“Funções de seta” Respostas de código

Funções de seta no ES6

let func = (a) => {}         // parentheses optional with one parameter
let func = (a, b, c) => {} // parentheses required with multiple parameters
Outrageous Ostrich

Funções de seta

// The usual way of writing function
const magic = function() {
  return new Date();
};

// Arrow function syntax is used to rewrite the function
const magic = () => {
  return new Date();
};
//or
const magic = () => new Date();

Owlthegentleman

Como fazer a função JavaScript

multiplyfunc = (a, b) => { return a * b; }
TechWhizKid

função de seta

const = newfunc =(a,b)=>{
	return a+b
}
Hungry Hamerkop

Por que você não pode usar a função de seta com isso em javascript para declarar métodos

'use strict';

var obj = { // does not create a new scope
  i: 10,
  b: () => console.log(this.i, this),
  c: function() {
    console.log(this.i, this);
  }
}

obj.b(); // prints undefined, Window {...} (or the global object)
obj.c()
tinydev

Funções de seta

let add = (x, y) => x + y;

console.log(add(10, 20)); // 30;
Code language: JavaScript (javascript)
Jeremy L

Respostas semelhantes a “Funções de seta”

Procure respostas de código populares por idioma

Procurar outros idiomas de código