Latest posts on "JavaScript"

What is JavaScript minification?

1 May 2016

JavaScript minification the process of removing all unnecessary characters such as comments, whitespaces and new line characters from source code without changing its functionality. It may also reduce the file size by 30% to 90%.

How to check client side validation for email address using JavaScript in asp.net MVC?

30 April 2016

In this article we will discuss, how to check client side validation for email address using JavaScript in asp.net MVC. It is common to check the format of the email is valid or not. To validate email address we need to use regular expression. In MVC razor we should use @@ symbol to perform validation.

Regular expression in javascript

30 April 2016

The regular expression is an object that describes pattern of characters that is used to match the character combination of strings.

Recursive functions in JavaScript?

28 April 2016

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.

How to handle exception in JavaScript?

28 April 2016

In this article we will discuss how to handle exception in JavaScript. The exception may occur at run time due to errors such as referencing a variable or a method that is not defined.

How to filter odd number using from array in JavaScript?

28 April 2016

In this article we will discuss implementing how to filter odd number using from array in JavaScript. Below example we are using a callback function Isodd it will result the odd numbers.

Function in JavaScript

27 April 2016

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.

Page 4 of 6