What is Javascript?
Javascript MDN Docs: https://developer.mozilla.org/en-US/docs/Web/JavaScript
- JavaScript (JS) is a lightweight interpreted (or just-in-time compiled) programming language with first-class functions1.
- It is dynamically typed language
Data types
Operators
- Arithmatic operators : +, - ,*, /, %, **
- Comparision operators : <, >, <=, >=
- Eqality operators: ==, ===
- Logical operators: &&, ||, !
- Bitwise operators: &, |, ^, ~
Footnotes
-
First Class Function: Function is treated just like any other variable. ↩