Top Solutions

How to create an object in JavaScript?

In this article we will discuss, how to create an object using JavaScript. We can create a custom class and then create an instance of a class. In JavaScript we don’t have class instead of that we can use functions.

What is JavaScript minification?

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?

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.

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.