Skip to content
dreamcode
dreamcode
Lesson
Practice · Arrays
  1. Predict
  2. Arrange
  3. Fill in
+20 XP on finish
PREDICT · READ BEFORE YOU WRITE

What happens if you uncomment the second line?

Trace the program the way the computer would, then make your call before running anything.

let spot: [string, number] = ['Dock', 22];
// spot[0] = 99;
console.log(spot[0]);