Typo whitespace fix in access-multi-dimensional-arrays-with-indexes.english.md (#38247)

* Update access-multi-dimensional-arrays-with-indexes.english.md

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
This commit is contained in:
Vincent Shury 2020-02-24 11:02:53 -05:00 committed by GitHub
parent 78156a65f0
commit b49b9f3e3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ arr[3][0]; // equals [10,11,12]
arr[3][0][1]; // equals 11
```
<strong>Note</strong><br>There shouldn't be any spaces between the array name and the square brackets, like <code>array [0][0]</code> and even this <code>array [0] [0]</code> is not allowed. Although JavaScript is able to process this correctly, this may confuse other programmers reading your code.
<strong>Note</strong><br>There shouldn't be any spaces between the array name and the square brackets, like `array [0][0]` and even this `array [0] [0]` is not allowed. Although JavaScript is able to process this correctly, this may confuse other programmers reading your code.
</section>
## Instructions