Not cool.... PM Shouldn't do this.... How can SPG even agree for this... His security isn't a luxury but necessity.... Please don't do it sir @narendramodi
🚀 Building apps in React Native?
Try UI Kitten 🐱
✔️ Customizable UI components
✔️ Clean & consistent design
✔️ Dark/Light themes
✔️ Faster development
Perfect for modern mobile apps 🔥
#ReactNative#UIKIt#Mobile#MobileApp
Hoisting in JS is a behavior where variable and function declaration are moved to the top of their scope before code execution. It means that it's possible to use a variable or function before it's declared in the code .
Variable hoisting : var
Function hoisting: fully Hoisted.
- var : var is hoisted. Var is function scope base.
- let : let is not hosted. Let is {} scope base. You can reassign value not re declared.
- const : Const is also {} scope base. You can't reassign or change a value. Also declare the value in initial stage.
#javascript
#01