Become a member
Sign in
nayana
nayana

nayana

73 Following
1 Followers
  • Profile

  • Claps

Latest

nayana
nayana
Apr 26, 2018 · 5 min read

JavaScript Journey — Hour #3

The process of converting value from one type to another is known as Type Coercion.

For example: Conversion of number to string, number to Boolean or vice versa.

1

nayana
nayana
Apr 10, 2018 · 1 min read

JavaScript Journey — Hour #2

  • Object properties can be accessed in two ways:
  1. Using Dot Notation (.)
  2. Using Bracket Notation ([])
  • Generally, we prefer to use dot notation over the bracket notation.
  • But, when property keys…
nayana
nayana
Apr 10, 2018 · 1 min read

JavaScript Journey — Hour #1

  • JavaScript has typed values, not typed variables. In other programming languages, variables depicts the type of value stored in the variable, whereas JavaScript is a loosely typed language.

1