Shallow Copy

Learn about cloning objects and the concept of shallow copy.

We'll cover the following...

Introduction

JavaScript made its way from being a toy language for simple animations to becoming a language for client-side and server-side web application development. Some generic concepts also made their way to the JavaScript world, and developers became more and more aware of them. Cloning objects is one of these concepts.

Cloning can be quite complex. Prototypal ...