The
operator is used in JavaScript to check if a property exists in an object.
You can try running the following code to learn how to use the in operator in JavaScript−
Live demonstration
<!DOCTYPE html> <html> <body> <script> var emp = {name:"Amit", subject:"Java"}; document.write("name" in emp); document.write("<br>"); document.write("subject" in emp); document.write("<br>"); document.write("MAX_VALUE" in Number); document.write("<br>"); document.write("MIN" in Number); </script> </body> </html>
The above is the detailed content of What is the use of in operator in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!