js leng code example
Example 1: MDN array length
const clothing = ['shoes', 'shirts', 'socks', 'sweaters'];
console.log(clothing.length);
// expected output: 4
Example 2: 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