Home  >  Article  >  Web Front-end  >  What is the use of in operator in JavaScript?

What is the use of in operator in JavaScript?

王林
王林forward
2023-09-17 20:45:031082browse

The

What is the use of in operator in JavaScript?

operator is used in JavaScript to check if a property exists in an object.

Example

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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete