Sunday, January 22, 2023
A promise is a special JavaScript object that links the “producing code” and the “consuming code” together.
Friday, October 14, 2022
JavaScript runs code sequentially in top-down order. But Wait!, have you ever been to the situation where you need to run a function only after another function has run successfully.
Saturday, January 15, 2022
Although Var, Let, and Const all are ways of declaring variables in JavaScript. There are some differences between them in terms of scope, modification, and re-declaration of the variable.