Answers for "get the number of values inside the array in js"

24

count the number of elements in an array javascript

var arr = [10,20,30,40,50]; //An Array is defined with 5 instances

var len= arr.length;  //Now arr.length returns 5.Basically, len=5.
console.log(len); //gives 5
console.log(arr.length); //also gives 5
Posted by: Guest on May-08-2020
0

how to get number of a specific element of an array

// Let has local scope
let array = [1, 2, 3, 5, 2, 8, 9, 2]

// Functional filter with an Arrow function
array.filter(x => x === 2).length  // -> 3
Posted by: Guest on March-27-2022

Code answers related to "get the number of values inside the array in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language