“Pfeilfunktion in ES6” Code-Antworten

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

Pfeilfunktion in ES6

var array = [1, 2, 3, 4]

const sum = (acc, value) => acc + value
const product = (acc, value) => acc * value

var sumOfArrayElements = array.reduce(sum, 0)
var productOfArrayElements = array.reduce(product, 1)
Outrageous Ostrich

Pfeilfunktion in JavaScript

let numbers = (x, y, z) => (x + y + z) * 2;
console.log(numbers(3, 5, 9))
//Expected output:34
Ariful Islam Adil(Code Lover)

Ähnliche Antworten wie “Pfeilfunktion in ES6”

Fragen ähnlich wie “Pfeilfunktion in ES6”

Weitere verwandte Antworten zu “Pfeilfunktion in ES6” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen