Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

JavaScript Validation - Exercises, Practice, Solution

JavaScript validation [10 exercises with solution]

[An editor is available at the bottom of the page to write and execute the scripts.]

1. Write a JavaScript function to validate whether a given value type is boolean or not. Go to the editor

Click me to see the solution

2. Write a JavaScript function to validate whether a given value type is error or not. Go to the editor

Click me to see the solution

3. Write a JavaScript function to validate whether a given value type is NaN or not. Go to the editor

Click me to see the solution

4. Write a JavaScript function to validate whether a given value type is null or not. Go to the editor

Click me to see the solution

5. Write a JavaScript function to validate whether a given value is number or not. Go to the editor

Click me to see the solution

6. Write a JavaScript function to validate whether a given value is object or not. Go to the editor

Click me to see the solution

7. Write a JavaScript function to validate whether a given value type is pure json object or not. Go to the editor

Click me to see the solution

8. Write a JavaScript function to validate whether a given value is RegExp or not. Go to the editor

Click me to see the solution

9. Write a JavaScript function to validate whether a given value type is char or not. Go to the editor

Click me to see the solution

10. Write a JavaScript function to check whether given value types are same or not. Go to the editor

Click me to see the solution

More to Come !

* To run the code mouse over on Result panel and click on 'RERUN' button.*

Live Demo:

See the Pen javascript-common-editor by w3resource (@w3resource) on CodePen.


Do not submit any solution of the above exercises at here, if you want to contribute go to the appropriate exercise page.



JavaScript: Tips of the Day

How to insert an item into an array at a specific index (JavaScript)?

What you want is the splice function on the native array object.

arr.splice(index, 0, item); will insert item into arr at the specified index (deleting 0 items first, that is, it's just an insert). In this example we will create an array and add an element to it into index 2:

var arr = [];
arr[0] = "Jani";
arr[1] = "Hege";
arr[2] = "Stale";
arr[3] = "Kai Jim";
arr[4] = "Borge";

console.log(arr.join());
arr.splice(2, 0, "Lene");
console.log(arr.join());

Ref: https://bit.ly/2BXbp04