Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

correctly type checking objects in javascript

// Correctly type checking objects in Javascript
const Drinks = {
 Name:'Lemonde',
 ID: '#0000#&#9999#',
 Sale :{
   price:99,
   Full:100
 }

}

console.log(Object.prototype.toString.call(Drinks)); // Result = [object object]


// Note you can also use this method to type check Arry too.

Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #correctly #type #checking #objects #javascript
ADD COMMENT
Topic
Name
3+8 =