B-Tech final year student. Frontend developer and a coding enthusiast. Trying to make some place for me in this Tech world.
I am available for a full time opportunity.
Are let & const variable Hoisted ? The let & const keyword were introduced in ES6(2015). We all know that variable declared with var keyword can be hoisted. But are let & const variable also hoisted, the answer is yes. But they work little different ...

What is SCOPE ? Scope - It determines the accessibility of variable, object, function from different part of the code. For the above code variable b is within the scope of the function a( ). So basically there are two type of scopes 1 : Global sc...
