“¿Qué es fn.call?” Código de respuesta

¿Qué es fn.call?

const animals = [
  { species: 'Lion', name: 'King' },
  { species: 'Whale', name: 'Fail' }
];

for (let i = 0; i < animals.length; i++) {
  (function(i) {
    this.print = function() {
      console.log('#' + i + ' ' + this.species
                  + ': ' + this.name);
    }
    this.print();
  }).call(animals[i], i);
}
Sleepy Sandpiper

¿Qué es fn.call?

function Product(name, price) {
  this.name = name;
  this.price = price;
}

function Food(name, price) {
  Product.call(this, name, price);
  this.category = 'food';
}

function Toy(name, price) {
  Product.call(this, name, price);
  this.category = 'toy';
}

const cheese = new Food('feta', 5);
const fun = new Toy('robot', 40);
Sleepy Sandpiper

Respuestas similares a “¿Qué es fn.call?”

Preguntas similares a “¿Qué es fn.call?”

Más respuestas relacionadas con “¿Qué es fn.call?” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código