“символ подсчета JavaScript в строке” Ответ

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

Длина JavaScript

var colors = ["Red", "Orange", "Blue", "Green"];
var colorsLength=colors.length;//4 is colors array length 

var str = "bug";
var strLength=str.length;//3 is the number of characters in bug
Grepper

Считайте символ в строке, JS

"this is foo bar".split("o").length - 1;
// returns 2
Homely Heron

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

символ подсчета JavaScript в строке

var str = "Hello World!";
var n = str.length; 
FancyJump

символ подсчета JavaScript в строке

var str="hello";
var n str.lenbth;
console(n);
Open Owl

Ответы похожие на “символ подсчета JavaScript в строке”

Вопросы похожие на “символ подсчета JavaScript в строке”

Больше похожих ответов на “символ подсчета JavaScript в строке” по JavaScript

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

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