JavaScriptで文字列内の文字をカウントする方法
方法1: forループを使用する方法function countCharacter(string, character) { let count = 0; for (let i = 0; i < string.length; i++) { if (string[i] === character) { count++; } } return count; } // 使用例 const str = "Hello, world!"; const char = "o"; const charCount = countCharacter(str, cha>>More