We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaac41e commit 1823cd0Copy full SHA for 1823cd0
1 file changed
app9.js
@@ -0,0 +1,9 @@
1
+const arrName = ['Andrii','Roma','Dima'];
2
+const stringName = arrName.slice();
3
+
4
+console.log(arrName); // ['Andrii','Roma','Dima']
5
+console.log(stringName.join()); // Andrii,Roma,Dima
6
+console.log(stringName.join('')) // AndriiRomaDima
7
+console.log(stringName.join(' ')) // Andrii Roma Dima
8
9
0 commit comments