How to define variable in Javascript

We define variables to store some value in our programming script. We can define a variable as below: Var name = “Vivek Rastogi”; Let age = 44; Const emp_code = 1001; The best way to use the variable names are  Camel Case:: myName Pascal Case:: MyName Snake Case:: my_name We can not use javascript keywords […]

How to define variable in Javascript Read More »