Exercise 3.3

This commit is contained in:
Karan 2021-11-24 19:19:38 +05:30 committed by GitHub
parent 3a5b273520
commit f899c8a30e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

5
Chapter 3/Exercise 3.3 Normal file
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]);