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);
En esta página del sitio puede ver el video en línea JavaScript call method 📱 de Duración hora minuto segunda en buena calidad , que subió el usuario Bro Code 01 septiembre 2021, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 3,010 veces y le gustó 154 a los espectadores. Disfruta viendo!