Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
AmitDiwan has Published 10740 Articles
AmitDiwan
627 Views
For this, use the concept of document.getElementById() along with addEventListener(). Following is the JavaScript code −Example Live Demo Document Enter the value: document.getElementById('enterValue').addEventListener("input", function () { console.log('you have entered the value'); }); ... Read More
AmitDiwan
500 Views
Following is the code to create a JSON object in JavaScript.Example Live Demo Document body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result { font-size: 20px; font-weight: 500; } ... Read More
AmitDiwan
3K+ Views
You can use # to get the value when user clicks the button using document.querySelector(“”); Following is the JavaScript code −Example Live Demo Document Example: choose a number between 1 to 100 Give a number: ... Read More
AmitDiwan
2K+ Views
To create a const array in JavaScript we need to write const before the array name. The individual array elements can be reassigned but not the whole array.Following is the code to create a constant array in JavaScript.Example Live Demo Document body { ... Read More
AmitDiwan
1K+ Views
Following is the syntax to generate random color in JavaScript −$("#yourIdName").css("background-color", yourCustomFunctionNameToGetRandomColor());Following is the JavaScript code −Example Live Demo Document Click the button to get random color //The getColorCode() will give the code every time. function getColorCode() ... Read More
AmitDiwan
1K+ Views
At first, you need to extract the extract the div class with the help of getElementsByClassName() and iterate over the for loop and use the OR condition to show the specific text.Also, set yourDiv.style.display=’none’.Following is the JavaScript code −Example Live Demo Document ... Read More
AmitDiwan
248 Views
To upload an image, use FileReader() in JavaScript. Following is the JavaScript code −Example Live Demo Document function readImage(fileInput) { if (fileInput.files && fileInput.files[0]) { var takingInputFile = new ... Read More
AmitDiwan
353 Views
The error name value is used for setting or returning the error name. The error name can return the below values.Sl.NoError Name & Description1EvalErrorIt represents an error in the eval() function2RangeErrorIt happens when a numeric value is out of its range3ReferenceErrorIt happens when an illegal reference has occured4SyntaxErrorIt represents a ... Read More
AmitDiwan
252 Views
The try statement allows us execute a block of code and test for errors. Those errors are then caught and handle by the catch statement.Following is the code for try and catch statement in JavaScript −Example Live Demo Document body { font-family: ... Read More
AmitDiwan
290 Views
Following is the code for testing and executing a regular expression in JavaScript −Example Live Demo Document body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result, .sample { font-size: 20px; font-weight: 500; ... Read More