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 they are only accessible within a particular block. For example,

Let keyword

<script type="text/javascript">
        let name = 'Amit';
        {
            let name = 'Kumar';
            console.log(name);
        }
        console.log(name);
    </script>

Output :-

Const example:-

We use the const keyword in JavaScript to declare variables whose value can be initialized only at the time of declaration. It is similar functionality of declaring variables as the other keywords provided in JavaScript i.e. var and let

Example:-

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title></title>
</head>

<body>
    <div id="result"></div>
    <script type="text/javascript">
      const NUM = 10;
      var text = "";
      for (let NUM = 0; NUM < 10; NUM++) {
         text += NUM + ",";
      }
      text += "<br>"
      try {
         NUM = 20;
      } catch (err) {
         text += err.message;
      }
      document.getElementById("result").innerHTML = text;
    </script>

</body>

</html>

Output:-

Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.

Related Posts

How to use Global Variable using JavaScript in Laravel ?

What is Global Variable ? A global variable is a variable that is defined and accessible throughout the entire program or a significant portion of it, rather…

How to print Object Value using Array in Javascript ?

In this tutorial i’m going to print the object value using javascript ? First go to controller function and put below code. Next go to blade page…

How to Count the Vowels value in array objects ?

Ini this tutorial we’re going to learn how to get the value form array object and count only vowels value. 1st step create below file name Put…

How to print multidimensional array in Console ?

In this tutorial we’re going to learn how to print multidimensional array in console.log Using this I want to print all data whatever coming in log file…

How to remove fake path from url in laravel ?

In this tutorial we’re going to learn how to remove fake path from url in laravel using javascript. Now fakepath removing successfully form url 👍

List of My Blogs Written from May to October 2023

List of My Blogs Written in May 2023 1 How to Show Notification using Sweet Alert in Laravel 9 2 How to use Soft Delete and Restore…

0 0 votes
Article Rating
Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
trackback

[…] How to use Let and Const in JavaScript ? […]

1
0
Would love your thoughts, please comment.x
()
x