Programming with Umair
What will the following code output?let x = [1, 2, 3];let y = [...x];y.push(4);console.log(x);
1 year ago | [YT] | 9
@catalinchifo8172
Aren't deep copies independent from the original object?
1 year ago | 0
@k303k
Hi sir Can you do nextjs turotial with jest for unit testing and cypress for e2e testing pls.
Programming with Umair
What will the following code output?
let x = [1, 2, 3];
let y = [...x];
y.push(4);
console.log(x);
1 year ago | [YT] | 9