Defining Variables; using (const, let and var)
Const Is used to declare a variable that cannot be re-assigned after it has been defined. It is useful for declaring constants or values that should not be changed. Let Is used to declare a variable that can be re-assigned. It is useful for variables...
Sep 17, 20233 min read5
