“Значение подсчета от A до b javaScript” Ответ

Значение подсчета от 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

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

let counter = str => {
  return str.split('').reduce((total, letter) => {
    total[letter] ? total[letter]++ : total[letter] = 1;
    return total;
  }, {});
};

counter("aabsssd"); // => { a: 2, b: 1, s: 3, d: 1 }
Restu Wahyu Saputra

Ответы похожие на “Значение подсчета от A до b javaScript”

Вопросы похожие на “Значение подсчета от A до b javaScript”

Больше похожих ответов на “Значение подсчета от A до b javaScript” по JavaScript

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

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