“JS reduzieren eine Reihe von Straße” Code-Antworten

JS reduzieren eine Reihe von Straße

var authors = [{name: 'some author'},{name: 'another author'},{name: 'last author'}]
var authorString = authors.map(function(author){
    return author.name;
}).join(",");
console.log(authorString);
Tough Tortoise

JS reduzieren eine Reihe von Straße

var authors = ['some author', 'another author', 'last author'];
var authorString = authors.join(",");
console.log(authorString);
Tough Tortoise

Methode reduzieren

The reduce() method executes a reducer function (that you provide) on each element of the array, resulting in single output value.

The reducer function takes four arguments:
Accumulator (acc)
Current Value (cur)
Current Index (idx)
Source Array (src)

//syntax
arr.reduce(callback( accumulator, currentValue, [, index[, array]] )[, initialValue])
//example flatten an array

let flattened = [[0, 1], [2, 3], [4, 5]].reduce(
  ( accumulator, currentValue ) => accumulator.concat(currentValue),
  []
)
kepl3r

Ähnliche Antworten wie “JS reduzieren eine Reihe von Straße”

Fragen ähnlich wie “JS reduzieren eine Reihe von Straße”

Weitere verwandte Antworten zu “JS reduzieren eine Reihe von Straße” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen