“Count Acdularces of Marcy в String JavaScript” Ответ

javascript count ocdulars буквы в строке

function count(str, find) {
    return (str.split(find)).length - 1;
}

count("Good", "o"); // 2
DenverCoder1

Count Acdularces of Marcy в String JavaScript

var temp = "This is a string.";
var count = (temp.match(/is/g) || []).length;
console.log(count);

Output: 2

Explaination : The g in the regular expression (short for global) says to search the whole string rather than just find the first occurrence. This matches 'is' twice.
Ankur

Явные явления в строке

function countOccurences(string, word) {
   return string.split(word).length - 1;
}
var text="We went down to the stall, then down to the river."; 
var count=countOccurences(text,"down"); // 2
Grepper

Значение подсчета от A до b javaScript

function count (string) {  
  var count = {};
  string.split('').forEach(function(s) {
     count[s] ? count[s]++ : count[s] = 1;
  });
  return count;
}
Restu Wahyu Saputra

Значение подсчета от A до b javaScript

 const recorrences = ['a', 'b', 'c', 'a', 'b','a']
                .map(i => !!~i.indexOf('a'))
                .filter(i => i)
                .length;
console.log(`recorrences ${recorrences}`) 
//recorrences 3
Restu Wahyu Saputra

javaScript Count Evidence символа в строке

// String Prototype: myCount = myString.polycount("countThis")
String.prototype.polycount = function (criteria) {
  return this.split(criteria).length - 1 }
// Arrow Function (STR): myCount = strCount(myString, "countThis")
const strCount = (stack, find) => stack.split(find).length - 1
// Array Prototype: myCount = myArray.polycount("countThis")
Array.prototype.polycount = function (criteria) {
  return this.join("").split(criteria).length - 1 }
// Arrow Function (ARR): myCount = arrCount(myArray, "countThis")
const arrCount = (stack, find) => stack.join("").split(find).length - 1
Brian Patterson

Ответы похожие на “Count Acdularces of Marcy в String JavaScript”

Вопросы похожие на “Count Acdularces of Marcy в String JavaScript”

Больше похожих ответов на “Count Acdularces of Marcy в String JavaScript” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования