1 parent 2b65727 commit 93cf68eCopy full SHA for 93cf68e
1 file changed
01-Basics/08-array/app.js
@@ -1,6 +1,6 @@
1
-// Array = Indexed Value Collection
+// Array Object = Indexed Value Collection
2
let arr = [];
3
-let students = ["Mike", "Bob", "Walker"];
+let students = ['Mike', 'Bob', 'Walker'];
4
let scores = [100, 60, 90];
5
6
/* Do not do
0 commit comments