Vind een opleiding

Build a Javascript deeply nested object cloning utility - Udemy

Doelgroep: Alle niveaus
Duur: 11 colleges - 38 minuten
Richtprijs: € 19,99
Taal: Engels
Aanbieder: Udemy

>> proefles

In this course you will build a library that will help you clone deeply nested Javascript objects and arrays. In the process, you will learn about several Javascript concepts that you will find useful when working with objects and arrays. At the end you will also be able to register the utility as a bower package on bower and make it available for install from anywhere.

Copying of Javascript objects is done by reference. That means, your copied object shares the same memory address as your original object.

So, if you decide to change the value of a property on the copied object, you will end up modifying the value of the same property on the original object. 

This can be dangerous in many cases, where you unintentionally change the state of an object from somewhere else, which may result in causing unexpected behaviors in your application.

In the process of building this library you will learn about:

  •  Javascript objects and properties,
  •  why copying objects by reference can be dangerous,
  •  what is meant by cloning an object,
  •  creating helper functions that will do type checking on data,
  •  creating a function that will implement cloning for three different cases (data types) where the data is not an object or is null, where the data is an array holding elements of different data types and where the data is an object (and deeply nested object)
  • register the utility as a bower package


>> Meer info