Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
What is the usage of in operator in JavaScript?
The operator is used in JavaScript to check whether a property is in an object or not.
Example
You can try to run the following code to learn how to use in operator in JavaScript −
<!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> Advertisements
