Tuesday, 3 May 2022

JAVASCRIPT + CSS + HTML #32 | Scope of Variable in JAVASCRIPT | Let , Const , Var | Web Development

 <!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script>
    let a = "this is new method"
    console.log(a)


   
    const b = 66;
    console.log(a+b)

    </script>
</head>
<body>
   
</body>
</html>




No comments:

Post a Comment

JAVASCRIPT + CSS + HTML #42 | Event & Event Listener |How to Target using JS | Web Development

  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < met...