javascript is data object code example
Example 1: js obj
var obj = {my:"sql", nice:[69, 420]};
obj.my //returns the string "sql"
obj.nice //returns the array [69, 420]
Example 2: javascript object
const object = {
something: "something";
}
var obj = {my:"sql", nice:[69, 420]};
obj.my //returns the string "sql"
obj.nice //returns the array [69, 420]
const object = {
something: "something";
}