JavaScript: Garbage Collection
#Javascript #Software Developement #Web DevelopmentGarbage CollectionOverview Garbage collection (GC) is a form of automatic memory management. The garbage collector attempts to reclaim memory which was allocated by the program, but…
Javascript: Tasks /Macro Tasks, Micro tasks, and Nano tasks
#Software Developement #Javascript #Macro TasksIntroduction Javascript is a single-threaded language, so it can only execute one operation at a time. It uses a javascript scheduler to manage long operations such…