Nik
Nik's Blog

Nik's Blog

Follow
Follow
homeTalksExternal articlesAboutProjectsbadges

TL&DRs: What I know about JavaScript String.

Aug 5, 20232 min read338 views

Hey! What do you know about string type in JavaScript? I believe you saw gazillion times about 1+'1' or so. In this article, I won't talk about it,...

TL&DRs: What I know about JavaScript String.

Why even simple window.fetch might be tricky

Jul 3, 20236 min read310 views

I recently saw this tweet https://twitter.com/thomasfindlay94/status/1672211922517622784: While many responses were related to missed await before...

Why even simple window.fetch might be tricky

Browser Event loop: micro and macro tasks, call stack, render queue: layout, paint, composite

Mar 12, 202313 min read10.9K views

This article was initially published in my custom blog, but since I migrate to hashnode, I re-visited and re-wrote it The article focuses on the event...

Browser Event loop: micro and macro tasks, call stack, render queue: layout, paint, composite

JS: Call stack size exceeded

Mar 12, 20233 min read294 views

Some time ago I was working with big arrays of about 2.000.000 elements. One of the operations was to find the maximum value in the array. Sounds...

JS: Call stack size exceeded