“Funkcje strzałek” Kod odpowiedzi

Funkcje strzałek w ES6

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

Funkcje strzałek

// 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

Jak zrobić spółkę funkcji JavaScript

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

funkcja strzałki

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

Dlaczego nie możesz użyć funkcji strzałek z tym w JavaScript do deklarowania metod

'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

Funkcje strzałek

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

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

Odpowiedzi podobne do “Funkcje strzałek”

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

Przeglądaj inne języki kodu