Javascript–Variables and Data Types
Javascript is a Dynamically Typed language meaning the Interpreter assigns variables a type at runtime based on the type of data in the variable at that time. Javascript is one of the dynamically typed or untyped languages. How do we declare the variable in Javascript. Very simple!! No need to mention the type of variable. …