Created
January 29, 2020 13:53
-
-
Save florestankorp/9e3fe76217a5ce8e0f760798050412a3 to your computer and use it in GitHub Desktop.
Mapping an array to object with default keys
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const BOOKS = [ | |
'1', | |
'The Stranger\nThe Outsider', | |
'Albert Camus', | |
'1942', | |
'French', | |
'2', | |
'In Search of Lost Time\nRemembrance of Things Past', | |
'Marcel Proust', | |
'1913β27', | |
'French' | |
]; | |
let currentItem = 0; | |
const books = []; | |
const A = BOOKS.forEach((v, i) => { | |
if (i % 5 == 0) { | |
books[currentItem] = {}; | |
books[currentItem].id = BOOKS[i]; | |
} else if (i % 5 == 1) { | |
books[currentItem].title = BOOKS[i]; | |
} else if (i % 5 == 2) { | |
books[currentItem].author = BOOKS[i]; | |
} else if (i % 5 == 3) { | |
books[currentItem].year = BOOKS[i]; | |
} else if (i % 5 == 4) { | |
books[currentItem].lang = BOOKS[i]; | |
currentItem++; | |
} | |
}); | |
console.log(books); | |
// OUTPUT | |
[ | |
{ | |
id: '1', | |
title: 'The Stranger\nThe Outsider', | |
author: 'Albert Camus', | |
year: '1942', | |
lang: 'French' | |
}, | |
{ | |
id: '2', | |
title: 'In Search of Lost Time\nRemembrance of Things Past', | |
author: 'Marcel Proust', | |
year: '1913β27', | |
lang: 'French' | |
} | |
]; |
As mentioned above, this is how I would do it using Array.reduce()
const books = [
'1',
'The Stranger\nThe Outsider',
'Albert Camus',
'1942',
'French',
'2',
'In Search of Lost Time\nRemembrance of Things Past',
'Marcel Proust',
'1913β27',
'French',
'3',
'The adventures of Huckleberry Finn',
'Mark Twain',
'1885',
'English'
]
const newList = books.reduce((acc, cur, index) => {
if (index % 5 === 0) {
const [id, title, author, year, language] = books.slice(index, index + 5);
acc = [...acc, {id, title, author, year, language}];
}
return acc;
}, []);
class Book {
constructor(id, title, author, year, lang) {
this.id = id;
this.title = title;
this.author = author;
this.year = year;
this.lang = lang;
}
}
const books = [];
for (let i=0; i<BOOKS.length; i+=5) {
book = new Book(...BOOKS.slice(i, i+5));
books.push(book);
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good point too @epatrasc, your
chunk
method is actually equivalent toramda
'ssplitEvery
πI love the idea of your
...rest
parameter and recursive call @fidel-karsto ! π β€οΈThe same exact code as a one-liner :