“Funkcja normalna vs strzałka w JavaScript” Kod odpowiedzi

Funkcja normalna vs strzałka w JavaScript

// Normal Function
let add = function (num1, num2) {
return num1 + num2;
}

// Arrow Function
let add = (num1, num2) => num1 + num2;
madhav

Deklaracja funkcji JavaScript vs funkcja strzałki

Regular functions created through function declarations / expressions are both constructible and callable. ... Arrow functions (and methods) are only callable i.e arrow functions can never be used as constructor functions. Hence, they can never be invoked with the new keyword.
Fragile Frog

reguły JavaScript funkcji strzałki

const add3 = (num1, num2, num3) => return num1 + num2 + num3;
Fantastic Falcon

reguły JavaScript funkcji strzałki

const sayHi = ()=>console.log('Hi');
Fantastic Falcon

reguły JavaScript funkcji strzałki

const square = num => num ** 2;
Fantastic Falcon

funkcja strzałki JS vs

// currently common pattern
var that = this;
getData(function(data) {
  that.data = data;
});

// better alternative with arrow functions
getData(data => {
  this.data = data;
});
RedConcrete

Odpowiedzi podobne do “Funkcja normalna vs strzałka w JavaScript”

Pytania podobne do “Funkcja normalna vs strzałka w JavaScript”

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

Przeglądaj inne języki kodu