get length of an array code example
Example 1: javascript length
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
Example 2: get length of array
// In Javascript
var x = [1,2,3];
console.log(x.length);