Report Bug
Qus : What is the main difference between var and let keywords in JavaScript?
QusJavaScript में var और let कीवर्ड्स के बीच मुख्य अंतर क्या है?

A. The with value let cannot of a variable declared with var can be changed while the value of a variable declared be changed
B. var defines a variable while let defines a constant
C. var declare function scoped variable while let declare block scoped variable
D. All of the options


Solution
C. var declare function scoped variable while let declare block scoped variable






Report Bug