Dhananjay Patel Logo
  1. Home
  2. / Blog
  3. / Advance Js Concept
  4. / Lessons
  5. / 1

Prev

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

├── Primitive Types
│ ├── string
│ ├── number
│ ├── boolean
│ ├── null
│ └── undefined
└── Reference Type
├── object
├── array
└── function

Operators

  • Arithmatic operators : +, - ,*, /, %, **
  • Comparision operators : <, >, <=, >=
  • Eqality operators: ==, ===
  • Logical operators: &&, ||, !
  • Bitwise operators: &, |, ^, ~

Footnotes

  1. First Class Function: Function is treated just like any other variable.

Prev