We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8ee24e commit b4c5e78Copy full SHA for b4c5e78
1 file changed
app4.js
@@ -0,0 +1,9 @@
1
+const arr = ['str1','str2',2,1,11]
2
+
3
+console.log(arr.pop()); // 11
4
+console.log(arr); // ['str1','str2',2,1,11]
5
6
+console.log(arr.unshift(55)); // 5
7
+console.log(arr); // [55,'str1','str2',2,1,11]
8
9
0 commit comments