Create a JavaScript polyfill
Written byPhuoc Nguyen
Created
07 Sep, 2022
Due to the fact that JavaScript APIs have their own specifications, not all the browsers support a particular specification at the same time. A JavaScript API can be implemented in a browser sooner or later than the other browsers.
Because of that, we have to provide a patch version of the API to make sure that it still works on browsers that don't support it natively. That kind of patch is called polyfill.
The sample code below provides a patch for the Array's
`at()`
method which isn't available on Safari earlier than 15.4:if (!Array.prototype.at) {
Array.prototype.at = function (index) {
// The implementation ...
};
}
We can get rid of the
`if`
statement:Array.prototype.at =
Array.prototype.at ||
function (index) {
// The implementation ...
};
It's also possible to polyfill a global function using a similar approach. The
`structedClone`
function which isn't available on Safari earlier than 15.4, can be polyfilled as following:if (typeof window.structuredClone !== 'function') {
window.structuredClone = function (value) {
// ...
};
}
// Or
typeof window.structuredClone !== 'function' &&
window.structuredClone = function (value) {
// ...
};
Questions? 🙋
Do you have any questions? Not just about this specific post, but about any topic in front-end development that you'd like to learn more about? If so, feel free to send me a message on Twitter or send me an email. You can find them at the bottom of this page.
I have a long list of upcoming posts, but your questions or ideas for the next one will be my top priority. Let's learn together! Sharing knowledge is the best way to grow 🥷.
Recent posts ⚡
Make a text area fit its content automatically
30 Sep, 2023
Quickly insert alternate characters while typing
30 Sep, 2023
Zebra-like background
30 Sep, 2023
Add autocomplete to your text area
28 Sep, 2023
Linear scale of a number between two ranges
28 Sep, 2023
Highlight the current line in a text area
27 Sep, 2023
Create your own custom cursor in a text area
27 Sep, 2023
Mirror a text area for improving user experience
26 Sep, 2023
Display the line numbers in a text area
24 Sep, 2023
Select a given line in a text area
24 Sep, 2023
Highlight keywords in a text area
23 Sep, 2023
Newsletter 🔔
If you're into front-end technologies and you want to see more of the content I'm creating, then you might want to consider subscribing to my newsletter.
By subscribing, you'll be the first to know about new articles, products, and exclusive promotions.
Don't worry, I won't spam you. And if you ever change your mind, you can unsubscribe at any time.
Phước Nguyễn