My blogs
This is my blog page, here I write about softwares, web development and tools that I find useful.
Understanding web worker
21 July 2024
Web Workers in JavaScript are a way to run scripts in background threads, separate from the main UI thread, allowing long-running tasks to be performed without blocking the user interface or causing the web page to become unresponsive.
# web worker
# performance
# multithreading
Asynchronous JavaScript through event loop
21 December 2024
Asynchronous JavaScript through event loop description
# event-loop
# javascript-working
# asynchronous-programming