This commit is contained in:
Karan
2021-11-30 17:52:30 +05:30
parent b40c1fd1f7
commit 82cb79a39b
15 changed files with 0 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
const myArr = [1, 2, 3];
const bigArr = [myArr, myArr, myArr];
console.log(bigArr[1][1]);
console.log(bigArr[0][1]);
console.log(bigArr[2][1]);