How to use Let and Const in JavaScript ?

In this tutorial we’re going to learn how to use Const and let function in JavaScript. JavaScript let is used to declare variables. The variables declared using let are block-scoped. This means…