JeBMay 9, 20236 min readWhy does setTimeout(func, 0) work, anyway?Every web developer has seen this code at least once in their life: setTimeout(() => { /*Do some stuff*/ }, 0); However, a lot of people...
JeBFeb 21, 202314 min readOptimizing Your Web App: How to Score 100 on LighthouseWhile you may be using SSR, having all the content discoverable in the initial HTML, using a CDN for caching, and following all the best...
JeBApr 28, 20224 min readStop Using Function Parameters NowWhy you shouldn't be using function parameters in JavaScript and what the alternative is.