Found 6683 Articles for Javascript

Trigger an event IMMEDIATELY on mouse click, not after I let go of the mouse - JavaScript?

AmitDiwan
Updated on 09-Nov-2020 08:51:33

215 Views

For this, use the addEventListener() with mousedown event.ExampleFollowing is the code −            Document    document.addEventListener("mousedown", function () {       console.log("Mouse down event is happening");    }); To run the above program, save the file name “anyName.html(index.html)”. Right click on the file and select the option “Open with Live Server” in VS Code editor.OutputThis will produce the following output on console −When you click the mouse, the event will generate. The console output is shown below −

Add time to string data/time - JavaScript?

AmitDiwan
Updated on 09-Nov-2020 08:49:22

1K+ Views

At first, set a new Date in JavaScript −var dateValue = new Date("2021-01-12 10:10:20");Use new Date() along with setHours() and getHours() to add time.ExampleFollowing is the code −var dateValue = new Date("2021-01-12 10:10:20"); dateValue.setHours(dateValue.getHours() + 2); console.log("The date value is=" + dateValue.toString()); console.log("Only Hours value after incrementing=" + dateValue.getHours());To run the above program, you need to use the following command −node fileName.js. Here, my file name is demo291.js.OutputThis will produce the following output on console −PS C:\Users\Amit\javascript-code> node demo291.js The date value is=Tue Jan 12 2021 12:10:20 GMT+0530 (India Standard Time) Only Hours value after incrementing=12Read More

How to generate array key using array index – JavaScript associative array?

AmitDiwan
Updated on 09-Nov-2020 08:47:57

271 Views

For this, use forEach() along with [] to an associative array.ExampleFollowing is the code −var result = {}; var names = ['John', 'David', 'Mike', 'Sam', 'Bob', 'Adam']; names.forEach((nameObject, counter) => {    var generatedValues = { [nameObject]: counter };    Object.assign(result, generatedValues) }) console.log(result);To run the above program, you need to use the following command −node fileName.js.Here, my file name is demo290.js.OutputThis will produce the following output on console −PS C:\Users\Amit\javascript-code> node demo290.js { John: 0, David: 1, Mike: 2, Sam: 3, Bob: 4, Adam: 5 }

How to handle ESC keydown on JavaScript popup window?

Yaswanth Varma
Updated on 21-Apr-2023 16:40:01

3K+ Views

When we press the escape key, the event generated is detected using the keyup and keydown event handlers. When the escape key is pushed on the keyboard, the event handler runs across the page. Let’s dive into the article for getting better understanding on handling esc keydown on JavaScript popup window. Using keydown event When a key is pushed, the keydown event is triggered. The keydown event is called for all keys, regardless of whether they generate a character value, in contrast to the deprecated keypress event. While keypress shows which character was entered, keydown and keyup events give a ... Read More

How to format date value in JavaScript?

Yaswanth Varma
Updated on 21-Apr-2023 16:59:26

340 Views

To obtain dates in JavaScript, use either the new Date() or Date() function Object() { [native code] } (either current date or a specific date). While the Date() function Object()produces a string containing the current date and time, the new Date() function Object()creates a new Date object. Let’s dive into the article for getting better understanding on how to format date value in JavaScript How to Format Dates in JavaScript? Date formatting is dependent on you and your requirements. In some nations, the year (06/22/2022) comes first, then the month. In other cases, the day precedes the month, the year ... Read More

Is it possible to create a new data type in JavaScript?

Yaswanth Varma
Updated on 21-Apr-2023 17:03:31

2K+ Views

The task we are going to perform in this article is it possible to create a new data type in JavaScript. For instance, let’s consider we have variable student − var student = "username" console.log(typeof student) Now, I want to declare the type of that variable and print that in the output, and it will look like this − Output:"string" Let’s dive into the article to learn more about creating a new data type in JavaScript. Yes, it is possible to create a new data type in JavaScript, you can use the concept of Class. If you want ... Read More

How do I change a tag's inner HTML based on their order in JavaScript?

Yaswanth Varma
Updated on 21-Apr-2023 17:01:34

544 Views

The innerHTML property of an element in JavaScript allows you to access or modify any HTML or XML markup that is there. Use the method insertAdjacentHTML () to insert HTML into the page as opposed to changing an element's content. In JavaScript to change a tag’s innerHTML based on their order can be done using document.querySelectorAll(). Let’s jump into the article to learn more about changing the tag’s innerHTML based on their order. Using document.querySelectorAll() The static NodeList returned by the Document function querySelectorAll() lists all of the document's elements that match the given set of selectors. Syntax Following is ... Read More

How to change the color of a button when the input field is filled – JavaScript?

AmitDiwan
Updated on 09-Nov-2020 08:34:56

2K+ Views

Let’s say the following is our button −Press MeOn filling the below input field, the color of the above button should change −ExampleFollowing is the code − Live Demo            Document           UserName:                Press Me    function changeTheColorOfButtonDemo() {       if (document.getElementById("changeColorDemo").value !== "") {          document.getElementById("buttonDemo").style.background = "green";       } else {          document.getElementById("buttonDemo").style.background = "skyblue";       }    } To run ... Read More

How to create a password generator - JavaScript?

Yaswanth Varma
Updated on 21-Apr-2023 16:42:33

542 Views

These days, password generators can be found all over the internet. Without a strong enough password, websites frequently won't let you establish an account. The task we are going to perform was how to create a password generator JavaScript. Let’s dive into the article for getting better understanding on creating a password generator. For this, use Math.random() to create random passwords. Using Math.random() method A floating-point pseudo-random number in the range [0, 1], 0 (inclusive), and 1(exclusive) is returned by the JavaScript function Math.random(). You can then resize this random number to fit the necessary range. Syntax Following is the ... Read More

Do JavaScript arrays have an equivalent of Python’s "if a in list"?

Yaswanth Varma
Updated on 21-Apr-2023 16:44:43

476 Views

In JavaScript Arrays are used to store multiple values in a single variable. This is compared to a variable that can store only one value. Each item in an array has a number attached to it, called a numeric index, that allows you to access it. In JavaScript, arrays start at index zero and can be manipulated with various methods. This basically tells about true or false. If the item is found then it returns true, else false is returned. You can achieve the same in JavaScript arrays, using includes. Let’s dive into the article to understand more about the ... Read More

Advertisements