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...
shaki.hashnode.dev3 min read