js typeof number

JavaScript
// get type of variable

var number = 1
var string = 'hello world'
var dict = {a: 1, b: 2, c: 3}

console.log(typeof number) // number
console.log(typeof string) // string
console.log(typeof dict)   // objecttypeof("iAmAString");//This should return 'string'
//NO camelCase, as it is a JS Keywordconsole.log(typeof 93);
// Output = "number"

console.log(typeof 'Maximum');
// Output = 'string'

console.log(typeof false);
// Output = "boolean"

console.log(typeof anUndeclaredVariable);
// Output = "undefined"console.log(typeof 'blubber');> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"

Source

Also in JavaScript: