JavaScript call method 📱

Pubblicato il: 01 settembre 2021
sul canale di: Bro Code
3,010
154

Javascript call() method tutorial example explained

#JavaScript #call #method

// ******** index.js ********

// call() = predefined method that can
// call a method belonging to
// another object.

// Whichever object you want to use
// that method with, pass that object
// as an argument within call()
// this = object passed in

let employee = {
name: "Spongebob",
cook: function (){
console.log(this.name,"is cooking");
}
}
let supervisor = {
name: "Squidward",
cashier: function (){
console.log(this.name,"is at the cash register");
}
}
let boss = {
name: "Mr.Krabs",
beInCharge: function (){
console.log(this.name,"is in charge");
}
}

//employee.cook();
//supervisor.cashier();
//boss.beInCharge();

employee.cook.call(supervisor);
supervisor.cashier.call(boss);
boss.beInCharge.call(employee);


In questa pagina del sito puoi guardare il video online JavaScript call method 📱 della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Bro Code 01 settembre 2021, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 3,010 volte e gli è piaciuto 154 spettatori. Buona visione!