EIEsther Idaborindevmedic.hashnode.dev·Apr 27, 2023 · 8 min readGetting Started with GlaspIntroduction Reading online was less exciting for most people like myself because of the lack of ways to highlight and create notes easily while reading. That challenge no longer exists with the advent of highlighting apps. Glasp has taken highlighti...01E
EIEsther Idaborindevmedic.hashnode.dev·Feb 21, 2023 · 8 min readClosure in JavaScriptIntroduction A closure gives you access to an outer/enclosing function’s scope, including the variables from an inner function, even after the execution context of the outer scope has popped off the call stack. The above statement might sound ambiguo...00
EIEsther Idaborindevmedic.hashnode.dev·Feb 6, 2023 · 9 min readScopes and Scope Chain in JavaScriptIntroduction To become confident as a JavaScript programmer or developer, you always need to know how everything in your code works. With that understanding, you can avoid certain errors in JavaScript. An error that tends to occur due to limited know...01F
EIEsther Idaborindevmedic.hashnode.dev·Jan 1, 2023 · 11 min readUnderstanding asynchronous javascriptIntroduction You may have come in contact with applications that become unresponsive when a long-running task is executing, this is because the application is running a synchronous task that blocks the execution of subsequent tasks, which result in a...01F