fix(curriculum): remove style note (#45625)

This commit is contained in:
Lenin Kennedy
2022-04-05 22:49:27 +03:00
committed by GitHub
parent d886ea11ef
commit a6d2660c7c

View File

@ -25,8 +25,6 @@ const data = array[1];
The `console.log(array[0])` prints `50`, and `data` has the value `60`.
**Note:** There shouldn't be any spaces between the array name and the square brackets, like `array [0]`. Although JavaScript is able to process this correctly, this may confuse other programmers reading your code.
# --instructions--
Create a variable called `myData` and set it to equal the first value of `myArray` using bracket notation.