Mutalable data structure and reference value data type in js demo

--

let array1 = [‘akash’, ‘bikash’, ‘aksara’];

let array2 = array1;

array2.splice(1,1); //removing bikash

console.log(array1);

console.log(array2);

output:

[ ‘akash’, ‘aksara’ ]
[ ‘akash’, ‘aksara’ ]

let array1 = [‘akash’, ‘bikash’, ‘aksara’];

let array2 = […array1];

array2.splice(1,1); //removing bikash

console.log(array1);

console.log(array2);

output:

[ ‘akash’, ‘bikash’, ‘aksara’ ]
[ ‘akash’, ‘aksara’ ]

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Akash Shrestha
Akash Shrestha

No responses yet

Write a response