“Função de seta JS vs função” Respostas de código

Função normal vs Função de seta em JavaScript

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

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

Declaração da função JavaScript vs função de seta

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

Função de seta vs função em javascript

// Arrow function vs function
// Function in JavaScript
function regular(){
  console.log("regular function");
}
regular(); //regular function

// Arrow Function
const arrow = () => console.log("Arrow function");
arrow(); //Arrow function
Chetan Nada

Função de seta JS vs função

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

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

Sintaxe da função de seta Sintaxe da função Expressão da função

// Using function expression syntax
const addNums = function(numOne, numTwo) {
  return numOne + numTwo;
};

// Using new arrow function syntax
const addNums = (numOne, numTwo) => {
  return numOne + numTwo;
};
Graceful Gorilla

Respostas semelhantes a “Função de seta JS vs função”

Perguntas semelhantes a “Função de seta JS vs função”

Mais respostas relacionadas para “Função de seta JS vs função” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código