.length .js code example
Example 1: javascript string lentrh
var myString = "string test";
var stringLength = myString.length;
console.log(stringLength); // Will return 11 because myString
// is 11 characters long...
Example 2: typescript array count
const clothing = ['shoes', 'shirts', 'socks', 'sweaters'];
console.log(clothing.length);
// expected output: 4