create javascript object with functions code example

Example 1: objects in javascript

let object = {
  'key1': 'value1',
  'key2': 'value2',
  'keyn': 'valuen',
};
console.log(object);

Example 2: objects in javascript

let car = {
  engineNumber: 1234
  brand: 'BMW',
  break: function (){}
}

Example 3: js create object with properties

var mycar = new Car('Eagle', 'Talon TSi', 1993);

Example 4: js create object with properties

function Car(make, model, year) {
  this.make = make;
  this.model = model;
  this.year = year;
}