Answers for "how to create object in javascript using function"

6

how to define function in object javascript

// Functions that are defined inside objects are called methods.
let example = {
  calc: function (num1, num2) {
    return num1 + num2;
  },
};

// Calling the method
example.calc(1,2)
Posted by: Guest on May-26-2021
2

js create object with properties

function Car(make, model, year) {
  this.make = make;
  this.model = model;
  this.year = year;
}
Posted by: Guest on April-01-2020
1

create object javascript

let voleur = {
     action     : () =>console.log ('Coup de dague fatal') ,
     crie      : ('pour la horde!!!!') ,
     coupfatal :()=> console.log ('coup dans le dos')

}

voleur.action() ;
voleur.coupfatal() ;
console.log(voleur.crie) ;
Posted by: Guest on March-16-2020

Code answers related to "how to create object in javascript using function"

Code answers related to "Javascript"

Browse Popular Code Answers by Language