Things you should know about Objects and Immutability in JavaScript
Immutability is the art of maintaining the state of an object, an update should not change the object, but create a new object with the updated data. (more…)
Read more »
Learn how to use the ES6 destructuring expression in JavaScript to extract values from arrays or properties from objects into distinct variables. Read more