The core concept of JavaScript
Variable
We can define Variables in three ways in javaScript
var
let
const
// variable using var keyword
var name = 'harry'
// variable using let keyword
let age = 33
// variable using const keyword
const isSummer = tr...
pixprocoder.hashnode.dev2 min read