feel like updating my JavaScript skils. to some other thing like ES6 honestly i'm enjoying it imagine writing code like this isn't that nice?
const a = 1;
const object = {
a,
b:4,
};
const copy = {...object, c:5, d:6};
console.log(copy);
Top comments (1)
Of course. Readable code is always nice!