How to copy by value a composite data type in JS?

Mounisri
4 min readNov 9, 2020

“DATA TYPES” in JS

Javascript provides different data types to hold different values. Javascript is a dynamic type of language, which means you don't need to specify the type of variables because it is dynamically used by the javascript engine. we have 3 types of data types in JS.

Types of data types in JS:

  1. Primitive data type
  2. composite data type
  3. Special data type

Primitive :

Data types like numbers, strings, boolean are some of the primitive types.

var a=10; //numbers

var a=”hello” //string

var a=true/false //boolean

Composite :

A composite data type in JavaScript has multiple values, which are grouped. The object, functions, and array are composite data types.

Special:

Undefined and Null are special data types.

Copy by value and copy by reference:

Copy by value: In a primitive data-type when a variable is assigned a value we can imagine that a box is created in the memory. Inside the box, the value assigned to the variable is stored. Even after changing the content of the next variable the original variable remains the same.

fig: copy by value.

Copy by reference:

In the case of a non-primitive data-type, the values are not directly copied. When a non-primitive data-type is assigned a value a box is created with a sticker of the name of the data-type. However, the values it is assigned is not stored directly in the box. The language itself assigns a different memory location to store the data. The address of this memory location is stored in the box created.

fig: copy by reference.

In the above example, we can observe the change of admin name leads to a change in the original value.

So now the question is how to copy by value a composite data type?

we have 5 types to copy by value a composite data type

  1. Using Array.map().
  2. Using spread operator(…)
  3. Using JSON.stringify() and JSON.parse() methods.
  4. Using Object.assign()
  5. Using Slice() method

Using Array.map()

This method will calls a provided callback function once for each element in an array, in order, and constructs a new array from the results.

fig: array.map()

Using spread operator(…)

Spread operator allows an iterable to expand in places where 0+ arguments are expected. It takes in an iterable (e.g an array) and expands it into individual elements. The spread operator is commonly used to make shallow copies of JS objects. Using this operator makes the code concise and enhances its readability.

fig: spread operator

Using JSON.stringify() and JSON.parse() method

parse() is used for parsing data that was received as JSON; it deserializes a JSON string into a JavaScript object. JSON. stringify() on the other hand is used to create a JSON string out of an object or array; it serializes a JavaScript object into a JSON string.

fig: JSON.stringify() and JSON.parse()

Using Object.assign()

The Object.assign() method copies all enumerable(one by one)own property from one or more source objects to a target object. It returns the target object. It uses [[Get]] on the source and [[Set]] on the target, so it will invoke getters and setters. Therefore it assigns properties, versus copying or defining new properties.

fig: object.assign()

--

--