Siddhi GateforSiddhi Gate's Blogsiddhigate.hashnode.net·Sep 11, 2022I wrote polyfills for 32 JavaScript Array methods!Introduction While working on projects, I used many JavaScript methods. I was curious about their implementation. So, I tried to implement some of them and it was fun! Fast forward to today, I wrote polyfills for 32 JavaScript Array methods. In this...Anand Baraik and 1 other are discussing this2 people are discussing thisDiscuss·98 likes·4.7K readsJavaScript
Prajwal BhatiaforPRAJWAL'S BLOGprajwalbhatia.hashnode.net·Nov 30, 2022Polyfill - Javascript array push methodIt is always good to learn, how things work under the hood It will make you comfortable with the things you already know and you will feel more confident and superior because many people don't know about what is happening under the hood. I am startin...Discuss·22 likes·235 readsJavaScript
Prajwal BhatiaforPRAJWAL'S BLOGprajwalbhatia.hashnode.net·Dec 8, 2022Polyfill - Javascript array unshift methodIt is the third article from the polyfill series. If you haven't read the previous article in this polyfill series then you can find those articles here Push Polyfill Pop Polyfill Today we will learn about the polyfill of the array unshift method. Th...Discuss·12 likes·169 readsJavaScript
Siddhi GateforSiddhi Gate's Blogsiddhigate.hashnode.net·Feb 16, 2023Exploring Promise Methods and their Polyfills in JavaScript: all(), any(), allSettled() and race()In this article, I’ve explained the Promise methods: all(), any(), race(), allSettled() along with their polyfills. Promise.all() It accepts an iterable of promises as its argument and returns a Promise If all promises resolve, then the returned pr...Devananth A and 1 other are discussing this2 people are discussing thisDiscuss·4 likes·219 readsJavaScript
Bhushan PatilforFrontend Geniusbhushanpatil.hashnode.net·Feb 15, 2023Maximizing Cross-Browser Compatibility with Polyfill JavaScript TechniquesIntroduction Cross-Browser Compatibility: What it Means and Why it Matters Cross-browser compatibility is the cornerstone of an effective website. It refers to a website's ability to function seamlessly across different web browsers, such as Chrome, ...Discuss·47 readsJavascriptpolyfills
Harshita Kanalforharshita-kanal.hashnode.net·Feb 11, 2023Decoding JS (Part - 3): Polyfills and TranspilersPolyfills A polyfill is a piece of code, in JavaScript that is used to provide some functionality in a browser, that does not natively support it. They are written to replicate an API that is available in some browsers, for those who don't have it or...Discuss·1 like·35 readsDecoding JavascriptJavaScript
sriyaforSriya's Blogsriya.hashnode.net·Feb 10, 2023JS Polyfills - Part 6 Curry, Memoise and Generator FunctionsGithub Code: JS Polyfills 16. Curry Currying: Transformation of function with multiple parameters to a sequence of single parameters is Currying. Currying just transforms the function, it will not call the function. Partial functions can be easily ge...Discuss·32 readsJS PolyfillsWeb Development
sriyaforSriya's Blogsriya.hashnode.net·Feb 9, 2023JS Polyfills - Part 5 Promises (resolve, reject, all, race, then, catch, allSettled, any)Github Code: JS Polyfills What are Promises? Promise is an object that represents the eventual completion or failure of an asynchronous operation. Why do we use them? To avoid callback hell Where can we use them? We can use promises in different asyn...Discuss·1 like·45 readsJS PolyfillsJavaScript
Dhawal PandyaforDhawal Codesdhawalpandya01.hashnode.net·Jan 13, 2023Demystifying PolyfillsComing from the product of "Polyfillia", which is a paste used by civil engineers to fill cracks and holes in an otherwise useable wall, we have a "Polyfill", which seals and fills the holes of old browsers not understanding newer code. So, Polyfills...Discuss·1 like·37 readspolyfills
Prajwal BhatiaforPRAJWAL'S BLOGprajwalbhatia.hashnode.net·Dec 12, 2022Polyfill - Javascript array some methodIt is the fourth article from the polyfill series. If you haven't read the previous article in this polyfill series then you can find those articles here Push Polyfill Pop Polyfill Unshift Today we will learn about the polyfill of the array some meth...Discuss·10 likes·60 readsJavaScript
Prajwal BhatiaforPRAJWAL'S BLOGprajwalbhatia.hashnode.net·Dec 8, 2022Polyfill - Javascript array unshift methodIt is the third article from the polyfill series. If you haven't read the previous article in this polyfill series then you can find those articles here Push Polyfill Pop Polyfill Today we will learn about the polyfill of the array unshift method. Th...Discuss·12 likes·169 readsJavaScript
Prajwal BhatiaforPRAJWAL'S BLOGprajwalbhatia.hashnode.net·Dec 4, 2022Polyfill - Javascript array pop methodIt is the second article from the polyfill series. If you haven't read the previous article on the polyfill of the array push method then you can find that article here Push Polyfill. Today we will learn about the polyfill of the array pop method. Th...Discuss·11 likes·108 readsJavaScript
Prajwal BhatiaforPRAJWAL'S BLOGprajwalbhatia.hashnode.net·Nov 30, 2022Polyfill - Javascript array push methodIt is always good to learn, how things work under the hood It will make you comfortable with the things you already know and you will feel more confident and superior because many people don't know about what is happening under the hood. I am startin...Discuss·22 likes·235 readsJavaScript