JavaScript Basics

Shubh TiwariShubh Tiwari
2 min read
  1. Variables is like a container that holds data can be reused or updated later in the program. In JavaScript, variables are declared using the keywords var, let or const.

    Var Keyword.

    The var keyword is used to declare a variable. It has a function-scoped or globally-scoped behiviour.

  2. Let keyword

    The let keyword is introduced in ES6, has block scope and cannot be re-declared in the same scope.

    Const keyword

    The const keyword declares variables that cannot be reassigned. It’s block-scoped as well.

  3. Data Types

    JavaScript supports various datatypes, which can be broadly categorized into primitive and non-primitive types.

    Primitive

    Primitive datatypes represent single values and are immutable.

    1. Number : Represents numeric values (integers and decimals).

    2. String : Represents text enclosed in single or double quotes.

    3. Boolean : Represents a logical value (true or false).

  1. Undefined : A variable that has been declared but not assigned a value.

    1. Null : Represents an intentional absence of any value.

    2. Symbol : Represents unique and immutable values, often used as object keys.

      1. BigInt : Represents integers larger than Number.MAX_SAFE_INTEGER.

        Non - Primitive

        Non-primitive types are objects and can store collections of data or more complex entities.

        1. Object : Represents key-value pairs.

        2. Array : epresents an ordered list of values.

        3. Functions : Represents reusable blocks of code.

0
Subscribe to my newsletter

Read articles from Shubh Tiwari directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Shubh Tiwari
Shubh Tiwari