Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

ROUND PIZZA BOCES

<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<head>
<script>

//task 1
document.write(5 == 5);
document.write("<br>");
document.write(5 == 4);
document.write("<br>");

//task 2
document.write(0 != 0);
document.write("<br>");
document.write(1 != 2);
document.write("<br>");

//task 3
document.write(10>10);
document.write("<br>");
document.write(10>=10);
document.write("<br>");
document.write(20<20);
document.write("<br>");
document.write(20<=20);
document.write("<br>");
document.write(30==30);
document.write("<br>");
document.write(30!=30);

//demo 2
var urname = "pizza savers";
document.write("<br>");
document.write(urname == "pizza savers");
document.write("<br>");
document.write(urname == "pizza savers ");
document.write("<br>");
document.write(urname == "PIZZA SAVERS");
document.write("<br>");
document.write(urname == "im hungry");

//demo 3
urname = "round pizza boxes";
document.write("<br>");
document.write(urname!="round pizza boxes");
document.write("<br>");
document.write(urname!="round pizza boxes ");
document.write("<br>");
document.write(urname!="ROUND PIZZA BOXES");
document.write("<br>");
document.write(urname!="squarE");

//demo 4
var urname = prompt("enter your name:");
document.write("<br>");
if(urname == "hyunjin") {
    document.write("hello you legend");
}
else {
    document.write("tsk you're not hyunjin");
}

</script>
</head>
<body>
</body>
</html>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.