Latest posts on "JavaScript"

How to while loop in JavaScript?

27 April 2016

In this article we will discuss implementing while loop. The while statement creates a loop that executes a specific statement until the certain condition is met.

How to for loop in JavaScript?

27 April 2016

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?

27 April 2016

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.

How to implement else statement in JavaScript?

27 April 2016

In this article we will discuss implementing else statement. We can use else statement to specify a block of code to executed when the condition is false.

How to use substr() method in JavaScript?

26 April 2016

In this article we will discuss to how to use substr() method. It has two parameter start and count. Start is required parameter and it specifies where the position should to start. End is optional parameter it specifies the number of characters to extract. If the count parameter is not specified, it takes the all characters till end of the string. If the count is zero or negative then it will return empty.

How to use substring() method in JavaScript?

26 April 2016

In this article we will discuss to how to use substring() method. It has two parameter start and end. Start is required parameter and it specifies where the position should to start. End is optional parameter it specifies where the extraction should end. If the value of start parameter is greater than the end parameter then the method will swap the two arguments, start treated as end and end will be treated as start.

How to replace strings in JavaScript?

25 April 2016

In this article we will discuss to replace strings in JavaScript by using replace() method. It searches a given specified string and replaces with the replacement values.

Page 5 of 6