aparna-u.hashnode.devHow JavaScript Actually Works: The Event LoopIn JavaScript, the event loop is the mechanism that processes and responds to events. It's responsible for executing code, collecting and processing events, and executing queued sub-tasks. To grasp this concept fully, we need to delve into several in...Aug 15, 2024·5 min read
aparna-u.hashnode.devUnderstanding Hoisting: A Deep Dive into JavaScriptWhat is Hoisting? Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their 1 scope before code execution. 2 However, this doesn't mean the values are also moved; only the declarations are hoisted. ...Aug 14, 2024·2 min read
aparna-u.hashnode.devSimple method to convert text into speech using pythonHello everyone, I have used here a very simple tool that is, Google Text to Speech API known as the gTTS API. It converts text entered by the user, into audio which can be saved as a mp3 file. Installation Open the terminal and install pip install g...Oct 6, 2020·2 min read