Skip to content

Commit c04ce56

Browse files
committed
fix typo in 09-Arrays
1 parent 5c4ade1 commit c04ce56

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

manuscript/09-Arrays.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ TODO
2626

2727
### Array.of()
2828

29-
JavaScript has long had a quirk around creating arrays. The `Array` constructor behaves differently based on the type of data passed to it. For example:
29+
JavaScript has long had a quirk around creating arrays. The `Array` constructor behaves differently based on the type of data passed into it. For example:
3030

3131
```js
3232
let items = new Array(1, 2); // length is 2
@@ -192,4 +192,3 @@ Also works on strings.
192192
## Typed Arrays
193193

194194
TODO
195-

0 commit comments

Comments
 (0)