“Pfeilfunktionen” Code-Antworten

Pfeil funktioniert in ES6

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

Pfeilfunktionen

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

Wie man die JavaScript -Funktion zusammenfasst

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

Pfeilfunktion

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

Warum können Sie die Pfeilfunktion damit in JavaScript nicht verwenden, um Methoden zu deklarieren?

'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

Pfeilfunktionen

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

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

Ähnliche Antworten wie “Pfeilfunktionen”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen