Filter
Exclude
Time range
-
Near
What aspects of JavaScript contribute to its mysterious nature? 💡🤔 #JavaScriptMystery #CodingExperience #javascript
1
2
71
16 Oct 2023
Here's a JavaScript snippet for you to decipher: const x = {a: 1, b: 2, c: {a: 3, b: {a: 4}}}; const y = {...x}; x.a = 5; console.log(y.a); 🤔 What's the output? #JavaScriptMystery
1
4
25