creating object with variables js 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: js create object with properties
function Car(make, model, year) {
this.make = make;
this.model = model;
this.year = year;
}
Example 3: objects in javascript
let name = {
name1: 'mark'
}