working with objects in javascript 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;
}

Example 5: FUNCION EN OBJETO JAVASCRIPT

//Manera 1
function nombreDelTipoDeObjeto (par1, par2,, parN) {
this.nombrePropiedad1 = valorPropiedad1;
this.nombrePropiedad2 = valorPropiedad2;
this.método1 = function () { … código …. }
this.método2 = function (param1, param2,, paramN) { … código …}
}
// Manera alternativa
function nombreDelTipoDeObjeto (par1, par2,, parN) {
this.nombrePropiedad1 = valorPropiedad1;
this.nombrePropiedad2 = valorPropiedad2;
this.método1 = nombreFuncion1;
this.método2 = nombreFuncion2;
}
function nombreFuncion1 (par1, par2,, parN) { … código … }
function nombreFuncion2 (par1, par2,, parN) { … código … }