Exercise 3.3

This commit is contained in:
Karan
2021-11-24 19:19:38 +05:30
committed by GitHub
parent 3a5b273520
commit f899c8a30e
+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]);