We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a0b4c9 commit ca82fffCopy full SHA for ca82fff
Assign-Without-Object-Declaration.js
@@ -0,0 +1,9 @@
1
+
2
+// Assignment without Object Declaration
3
4
+({nama, umur} = {
5
+ nama : "Godam Strong",
6
+ umur : 32
7
+});
8
9
+console.log(nama); // Output: Godam Strong
0 commit comments