JavaScript call method 📱

Publicado em: 01 Setembro 2021
no canal de: 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);


Nesta página do site você pode assistir ao vídeo on-line JavaScript call method 📱 duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Bro Code 01 Setembro 2021, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 3,010 vezes e gostou 154 espectadores. Boa visualização!