#js
Read more stories on Hashnode
Articles with this tag
// Copying Value: let a = 10; let b = a; // 10 b = b + b; // 20 // Expected behaviour!! // Now, What's the behaviour of this: let x = [1, 2, 3,...