how to know the type of a variable in javascript code example
Example 1: javascript how to know type of variable
var foo = "Hello";
console.log(typeof foo); // string
Example 2: how to use the foreach method in javascript
groceries.forEach(groceryItem => console.log(groceryItem));