Prev Demo
Equal Value And Not Equal Type In Javascript
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <h1>Equal value and not Equal type</h1> <b>Assigning equal value and differnt type to the operator gives the result as</b> <p id="myId"></p> <script> var a = 30; document.getElementById("myId").innerHTML = (a === "30"); </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output