#programming-tips
Read more stories on Hashnode
Articles with this tag
Have you ever wondered why immediately after updating the state if it is logged, the value is undefined?? const fetchAPI = async () => { const...
Regular function function ATraditionalFunc () { console.log("inside traditonal function") } ATraditionalFunc() Output inside traditonal...
const a = 1; let b = 2; var c = 3; if(true){ const a = 10 let b = 20 var c = 30 console.log('Inside Block value of a = ' ,a ) ...
Popular JavaScript Interview Question How to Convert Asynchronous code to Synchronous code ? Promises can be used to convert Asynchronous code to...