RCRama Chandrainchandratalks.hashnode.dev·Apr 20, 2024 · 7 min readJavaScript FundamentalsHow JavaScript executes the code? JavaScript is single-threaded, which means only one statement is executed at a time. As the JS engine processes our script line by line, it uses this single Call-Stack to keep track of codes that are supposed to run ...00
RCRama Chandrainchandratalks.hashnode.dev·Apr 16, 2024 · 3 min readFunction's and CallbackFunction : It is a block of code, stored inside the cruel brackets. It should take some input and return an output where there is some obvious relationship between the input and the output. function functionName(parameters) { // Function body }...00