What is the difference between the below two statements:- (1) var myname = "Akiii"; (2) myname = "Akiii";
What is the difference between the below two statements:-
(1) var myname = "Akiii";
(2) myname = "Akiii";
Answer:
Both the above two statements are same. In javascript, even if you don't declare a "var" keyword, it is automatically added.
Note:-
It is always good to use "var" to declare any variable in javascript. It makes the code cleaner and readable.
Both the above two statements are same. In javascript, even if you don't declare a "var" keyword, it is automatically added.
Note:-
It is always good to use "var" to declare any variable in javascript. It makes the code cleaner and readable.
0 comments: