We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4c5e78 commit 6d63953Copy full SHA for 6d63953
1 file changed
app5.js
@@ -0,0 +1,7 @@
1
+const arr1 = [1,2,3];
2
+const arr2 = [10,20,30];
3
+
4
+const arr3 = arr1.concat(arr2);
5
6
+console.log(arr3) // [1,2,3,10,20,30]
7
0 commit comments