Why does void in JavaScript require an argument?


The void operator is used to evaluate the given expression. After that, it returns undefined. It obtains the undefined primitive value, using void(0) i.e. 0 as an argument.

The void(0) can be used with hyperlinks to obtain the undefined primitive value,

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Understanding JavaScript void(0)</title>
   </head>
   <body>
      <a href="javascript:void(0);" ondblclick="alert('Click it twice!')">Click me not once, but twice.</a>
   </body>
</html>

We used JavaScript:void(0) above to prevent the page from reloading when the button is clicked the first time.

The code will only work when the button will be clicked twice. If it is clicked once, then nothing happens. But the alert box comes over when the button is clicked twice since we used the ondblclick event handler.

mkotla
mkotla

e

Updated on: 16-Jun-2020

89 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements