Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 1.22 KB

javascript.md

File metadata and controls

27 lines (17 loc) · 1.22 KB

🚩 JavaScript

There are two types of programming languages:

  • Static language
  • Dynamic language

✔️ Static language is where the type of variable is set and cannot be changed in the future. For example:

String name = 'Jeffrey';

✔️ On the other hand, the type of variable of a dynamic language can be changed at run time.

let id = 12345;

I can change the value of id to any data type i want.





◀️ Previous Page : Table of contents 📝                                                                                   ▶️ Next Page : How to write JavaScript in HTML 🚩