object type javascript 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: type of javascript
if (typeof(value) !== "undefined") {
}
Example 3: javascript check type of variable var
typeof "hello"
var a = 1;
typeof(a);
Example 4: javascript object
let names = {
name1: 'What ever you want to put'
}
Example 5: objects in javascript
let name = {
name1: 'mark'
}