Answers for "how to see how many items are on an array 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

javascript check how many times value in array

function f(array,value){
    var n = 0;
    for(i = 0; i < array.length; i++){
        if(array[i] == value){n++}
    }
    return n;
}
Posted by: Guest on September-18-2021

Code answers related to "how to see how many items are on an array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language