Skip to content

Commit 9270fe5

Browse files
authored
Merge pull request #3639 from JaFro96/master
Fix the broken link in Chapter 3.6
2 parents 5ab1ce2 + 4ec440f commit 9270fe5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1-js/03-code-quality/06-polyfills/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Teams behind JavaScript engines have their own ideas about what to implement fir
77

88
So it's quite common for an engine to implement only part of the standard.
99

10-
A good page to see the current state of support for language features is <https://kangax.github.io/compat-table/es6/> (it's big, we have a lot to study yet).
10+
A good page to see the current state of support for language features is <https://compat-table.github.io/compat-table/es6/> (it's big, we have a lot to study yet).
1111

1212
As programmers, we'd like to use most recent features. The more good stuff - the better!
1313

@@ -85,7 +85,7 @@ Just don't forget to use a transpiler (if using modern syntax or operators) and
8585
For example, later when you're familiar with JavaScript, you can setup a code build system based on [webpack](https://webpack.js.org/) with the [babel-loader](https://github.com/babel/babel-loader) plugin.
8686
8787
Good resources that show the current state of support for various features:
88-
- <https://kangax.github.io/compat-table/es6/> - for pure JavaScript.
88+
- <https://compat-table.github.io/compat-table/es6/> - for pure JavaScript.
8989
- <https://caniuse.com/> - for browser-related functions.
9090
9191
P.S. Google Chrome is usually the most up-to-date with language features, try it if a tutorial demo fails. Most tutorial demos work with any modern browser though.

0 commit comments

Comments
 (0)