About 4,780 results
Open links in new tab
  1. Polyfill - Glossary | MDN

    Jul 11, 2025 · A polyfill is a piece of code (usually JavaScript on the Web) used to provide modern functionality on older browsers that do not natively support it.

  2. Polyfill (programming) - Wikipedia

    In software development, a polyfill is code that implements a new standard feature of a deployment environment within an old version of that environment that does not natively support the feature.

  3. What is a Polyfill ? - GeeksforGeeks

    Mar 27, 2022 · We will discuss polyfills for the following methods: Using map ( ) Using forEach ( ) Using reduce ( ) We will code our own map ( ), forEach ( ) and reduce ( ) function. These are all higher …

  4. What is the meaning of polyfills in HTML5? - Stack Overflow

    A polyfill is a browser fallback, made in JavaScript, that allows functionality you expect to work in modern browsers to work in older browsers, e.g., to support canvas (an HTML5 feature) in older …

  5. Polyfills and transpilers - The Modern JavaScript Tutorial

    Feb 4, 2025 · One interesting polyfill library is core-js, which supports a wide range of features and allows you to include only the ones you need. In this chapter we’d like to motivate you to study …

  6. Polyfills in Javascript: What & Why ? | by Rajat Singh | Medium

    Jan 16, 2025 · Polyfills are a powerful way to bridge the gap between modern JavaScript features and older browsers. By understanding how polyfills work and when to use them, you can create more …

  7. What are polyfills? - IONOS

    Sep 4, 2024 · What are polyfills and which languages can they be written in? A polyfill, sometimes referred to as a Polyfiller, is a code block of varying complexity that makes modern HTML, CSS or …

  8. Understanding Polyfills: Bridging the Gap in Modern and Old Web ...

    Sep 28, 2025 · Polyfills are a bridge between modern web capabilities and older browser environments. They let developers write modern, clean code without leaving behind users on outdated browsers.

  9. JavaScript Polyfill - Codecademy

    Jan 21, 2025 · A polyfill is a small piece of JavaScript code that enables modern functionality in browsers that lack native support for specific features. Polyfills act as a fallback, ensuring …

  10. Understanding Polyfills: What They Are and How They Work

    Oct 24, 2024 · Polyfills work by detecting whether a specific feature is supported by the user's browser. If the feature is missing, the polyfill provides an alternative implementation that mimics the behavior …