typeof number javascript vs int code example
Example 1: js typeof number
console.log(typeof 93);
// Output = "number"
console.log(typeof 'Maximum');
// Output = 'string'
console.log(typeof false);
// Output = "boolean"
console.log(typeof anUndeclaredVariable);
// Output = "undefined"
Example 2: data types in javascript
1, 1.0 // Number
'String', "String"
true, false // Boolean
{id: 1;} // Object
[1, 2, 3] // Array