“Co to jest fn.call” Kod odpowiedzi

Co to jest 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

Co to jest 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

Odpowiedzi podobne do “Co to jest fn.call”

Pytania podobne do “Co to jest fn.call”

Więcej pokrewnych odpowiedzi na “Co to jest fn.call” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu