Introduction
- JavaScript or JS is a programming language.
- It is used to create web pages.
- It is an Interpreted Language.
- It is dynamically typed language.
- The JS code is written inside <script> tag.
Terms:
Interpreted Language: It executes code line by line.
Dynamically Typed: In JS it does not require to specify the datatype of any variable. The var keyword is used to define the variable. And according to the value assigned to the variable it automatically specified which type of variable is.
0 Comments