javascript tyepof code example
Example 1: typeof in js
var someValue = 'this is string';
console.log(typeof(someValue)); // this will return string
Example 2: typeof in js
typeof("iAmAString");//This should return 'string'
//NO camelCase, as it is a JS Keyword