js get type code example
Example 1: javascript typeof shows object
What value it has What the output shows you
when you write |console.log(typeof(variable);
Undefined: "undefined"
Null: "object"
Boolean: "boolean"
Number: "number"
String: "string"
Function object: "function"
E4X XML object: "xml"
E4X XMLList object: "xml"
NodeList "Nodelist [more data]"
HTMLCollection "HTMLCollection(1) [more data]"
Example 2: get type of var js
function doSomething(x) {
if(typeof(x) === 'string') {
alert('x is a string')
} else if(typeof(x) === 'number') {
alert('x is a number')
}
}
Example 3: type of variable js
var number = 1
var string = 'hello world'
var dict = {a: 1, b: 2, c: 3}
console.log(typeof number)
console.log(typeof string)
console.log(typeof dict)
Example 4: node js check type of variable
if (typeof i != "number") {
console.log('This is not number');
}
Example 5: type of javascript
if (typeof(value) !== "undefined") {
}
Example 6: js typeof number
console.log(typeof 93);
console.log(typeof 'Maximum');
console.log(typeof false);
console.log(typeof anUndeclaredVariable);