Skip to content

Commit 81a37be

Browse files
authored
typos
o -> on build-in -> built-in
1 parent 8a9d97a commit 81a37be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

1-js/09-classes/06-extend-natives/article.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Extending build-in classes
2+
# Extending built-in classes
33

44
Built-in classes like Array, Map and others are extendable also.
55

@@ -29,7 +29,7 @@ arr.constructor === PowerArray
2929
```
3030

3131
So when `arr.filter()` is called, it internally creates the new array of results exactly as `new PowerArray`.
32-
That's actually very cool, because we can keep using `PowerArray` methods further o the result.
32+
That's actually very cool, because we can keep using `PowerArray` methods further on the result.
3333

3434
Even more, we can customize that behavior.
3535

@@ -73,7 +73,7 @@ And we've already been talking about native classes extending each other: `Array
7373

7474
But statics are an exception. Built-in classes don't inherit static properties from each other.
7575

76-
In other words, the prototype of build-in constructor `Array` does not point to `Object`. This way `Array` and `Date` do not have `Array.keys` or `Date.keys`. And that feels natural.
76+
In other words, the prototype of built-in constructor `Array` does not point to `Object`. This way `Array` and `Date` do not have `Array.keys` or `Date.keys`. And that feels natural.
7777

7878
Here's the picture structure for `Date` and `Object`:
7979

0 commit comments

Comments
 (0)