JSFiddle - React, Tailwind, and code Playground

by akang2

HTML

<html>
    <head>
    </head>
        <body>
            <h1> Hey!</h1>
        </body>
</html>

JavaScript

var comparisons;

var theSport = "Golf";

var myFood = "Pizza";

var myMess = (theSport == "Football") ? "Cool" : "Might be cool";

alert(myMess); 

var myMess2 = (myFood == "Pizza") ? "My fav" : "It's alright";

alert (myMess2);