Important Notice:

Course Content
Switch Statement
0/1
break and continue Statements
0/3
Basic Form Validation in JavaScript
0/1
JavaScript & Angular JS (Chapter- 6) M2-R5.1
About Lesson

void operator

            ये operator जब भी आप JavaScript में यदि कोई function को call करते है तो उसकी return वैल्यू को discard करने के लिए प्रयोग किया जाता है इसे प्रयोग करना बहुत आसन होता है जिस भी function की return वैल्यू आप discard करना चाहते है उसमे आप इस operator (…) को argument की तरह pass करते है

example

<a href=”your-url”onclick=”myFunction(….)”>click here</a>

 

void operator

            Whenever you call a function in JavaScript, it is used to discard its return value. It is very easy to use it. In whichever function you want to discard the return value, you can use this operator ( …) is passed as argument

example

<a href=”your-url”onclick=”myFunction(….)”>click here</a>

error: Content is protected !!