This is one of the most commonly used data-structures container types that we use in Javascript. It’s a dictionary.
It’s used as part of JSON - JavaScript Object Notation.
We can specific Javascript objects literally:
Code Block |
---|
var Cars = {type:"Fiat", model:"500", color:"white"}; |