“JavaScript Aplicar” Respostas de código

JavaScript Aplicar

function myFunc(p1, p2, pN)
{
     // here "this" will equal myThis
}
let myThis = {};

// call myFunc using myThis as context.
// destructure array to function arguments.
myFunc.apply(myThis, ["param1", "param2", "paramN"]);
TechNyquist

Função JavaScript Aplicar ()

const person = {
  fullName: function() {
    return this.firstName + " " + this.lastName;
  }
}

const person1 = {
  firstName: "Mary",
  lastName: "Doe"
}

// This will return "Mary Doe":
person.fullName.apply(person1);
naly moslih

Respostas semelhantes a “JavaScript Aplicar”

Perguntas semelhantes a “JavaScript Aplicar”

Mais respostas relacionadas para “JavaScript Aplicar” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código