see my blogs

  1. Functions: The bread and butter of JavaScript programming

    A function in JavaScript is a piece of code contained within a block with a name associated to it. These are building blocks for almost every program that one tends to write. In simple words a function is a subprogram which is capable of performing a specific task.

    Read more

  2. The ...spread operator and the rest parameters

    As the name suggests the spread operator spreads or expands an iterable such as an array or string into individual elements.

    Read more