Front-end Developer Handbook 2019

Overview: This is a guide that everyone can use to learn about the practice of front-end development. It broadly outlines and discusses the practice of front-end engineering: how to learn it and what tools are used when practicing it in 2019. It is specifically written with the intention of being a professional resource for potential … Read more

7 Tricks with Resting and Spreading JavaScript Objects

Resting and spreading can be used for more than just resting arguments and spreading arrays. Here are six lesser known tricks when using rest and spread with JavaScript objects. 1. Adding Properties Clone an object while simultaneously adding additional properties to the (shallow) cloned object. In this example user is cloned and password is added into userWithPass. 2. Merge Objects Merge … Read more