what is the type javascript code example
Example 1: type javascirpt
console.log(typeof 42);
Example 2: check data type in javascript
typeof("string"); //string
typeof(123); //number
console.log(typeof 42);
typeof("string"); //string
typeof(123); //number