I am Full Stack Developer working at Siemens. I have experience in full-stack development for web and mobile applications.
1. Create the project Create the project with the Expo CLI npx create-expo-app my-app cd my-app Install tailwind and its dependency yarn add...
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...
Unlike matplot library in python where you can easily plot records of 100k+ Many JavaScript Library Fails to do the same Popular JS...