Top Solutions

Recursive functions in JavaScript?

In this article we will discuss recursive functions in JavaScript. The recursive is a function that calls itself by looping there must be a break otherwise it will create infinite loops.

Function in JavaScript

A function allows us to write code once and we can use it as many times as our wish just by calling the function. A function eliminates the need of writing the same code again and again.

How to for loop in JavaScript?

In this article we will discuss implementing for loop. For statement creates a loop it consist of three optional expressions separated by semicolons. If the condition is true then the code executed inside the loop, otherwise the control will be out of the loop. The iteration statement where we can increase or decrease count.

How to implement switch statement in JavaScript?

In this article we will discuss implementing switch statement. The switch statement is used to perform different actions based on different condition. In order to improve the readability of a program multiple if else statements can be replaced with a switch statement.