Fix typo
This commit is contained in:
Alexey Pyltsyn 2019-06-15 18:18:36 +03:00 committed by GitHub
commit 0e81fb4f4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@ That said, using global variables is generally discouraged. There should be as f
We can test the global object for support of modern language features.
For instance, test if a build-in `Promise` object exists (it doesn't in really old browsers):
For instance, test if a built-in `Promise` object exists (it doesn't in really old browsers):
```js run
if (!window.Promise) {
alert("Your browser is really old!");