Try it
Javascript
Jquery
Angular
Learn Angular
Learn Javascript
Learn Bootstrap
Learn jQuery
LogicalOperator-3
Logical Operator
===
and
>
example
<!DOCTYPE html> <html> <head> </head> <body> <p id="sample"></p> <script> var x = 6; var y = 3; document.getElementById("sample").innerHTML = !(x === y) + "<br>" + !(x > y); </script> </body> </html>
Output
×
Save This try
Title
Description
<p>Logical Operator <code>===</code> and <code>></code> example</p>