const newPost = (post, addedAt = Date()) => ({
...post,
addedAt,
})
const firstPost = {
id: 1,
author: 'Daulet',
}
newPost (firstPost)
const implicitReturn = (prop) => ({ name: 'hehe', ...prop });
const explicitReturn = (prop) => {
return {
name: 'hehe',
...prop
}
};