Answers for "how to get count of elements in array js"

37

array count items

<?php
	$arr = ["one", "two", "three", "four"];
	echo count($arr);
  ?>
Posted by: Guest on December-29-2019
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

Code answers related to "how to get count of elements in array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language