Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

232
Visualizações
How to bind an object to a function in JavaScript?

I have the next task:

const person = {name: 'Arnold'};

function fn(salut, lastName) {
    console.log(salut, this.name, lastName);
}

const bindName = bind(fn, person, 'Mr');

bindName('Helgov');

I have to write a function that prints: "Mr Arnold Helgov"

My realization of this task is the next function:

function bind(fn, person, salute) {
    return (lastname) => {
        return fn(salute, lastname);
    }
}

But I have a problem here. My function prints only "Mr Helgov" and the name 'Arnold' is lost. How to solve this problem (maybe by using bind or apply or call)?

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

How to solve this problem (maybe by using bind or apply or call)?

Yes, you can use call or bind to make sure this gets to be equal to person during the call of fn.

With call:

const person = {name: 'Arnold'};

function fn(salut, lastName) {
    console.log(salut, this.name, lastName);
}

const bindName = bind(fn, person, 'Mr');

bindName('Helgov');

function bind(fn, person, salute) {
    return (lastname) => {
        return fn.call(person, salute, lastname);
    }
}

Or, bind:

const person = {name: 'Arnold'};

function fn(salut, lastName) {
    console.log(salut, this.name, lastName);
}

const bindName = bind(fn, person, 'Mr');

bindName('Helgov');

function bind(fn, person, salute) {
    return fn.bind(person, salute);
}

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda