python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Polyfill for bind includes using call or apply, why?
The polyfill of bind which I find online is something like -
Function.prototype.bind = function(obj, ...args) {
const self = this;
return function(...args2) {
return self.apply(obj, [...args, ...
Kanika Rungta
Votes: 0
Answers: 1
Problem with polyfill window.atob implementation inJavascript
I'm trying to write my own solution for a BFE problem https://bigfrontend.dev/problem/implement-atob
Basically, writing a polyfill for the atob function available in javascript
I tried to understand t...

hey_im_abhi
Votes: 0
Answers: 0
Can the polyfill.ts file be deleted?
I have this polyfill.ts file in my app that have these import statements:
import 'zone.js/dist/zone';
import 'core.js';
import 'core-js/modules/es6.map';
import 'regenerator-runtime/runtime';
import ...
user8080
Votes: 0
Answers: 2
Is there an actual fix of background-attachment: fixed on mobile devices?
Is there an actual fix of background-attachment: fixed on mobile devices?
When you design your site background like this:
section {
background: cover fixed no-repeat;
}
.section-1 {
background...
xijdk
Votes: 0
Answers: 0