array of names reduce code example
Example 1: reduce an array of objects to string
var authors = [{
name: "a"
}, {
name: "b"
}, {
name: "c"
}];
var result = authors.reduce(function(author, val, index) {
var comma = author.length ? ", " : "";
return author + comma + val.name;
}, '');
console.log(result);
Example 2: reduce javascript
const initialValue = 0;
const numbers = [5, 10, 15];
const reducer = (accumulator, item) => {
return accumulator + item;
};
const total = numbers.reduce(reducer, initialValue)