<!DOCTYPE html>
<html>
<body>

<p>Click the button to check whether the variables have been assigned a value or not.</p>

<button onclick="myFunction()">Try it</button>

<p id="demo"></p>

<script>
function myFunction() {
    var t1 = "myVar";
    var t2;

    if (t1 === undefined) {
        txt1 = "t1 is undefined";
    } else {
        txt1 = "t1 is defined";
    }

    if (t2 === undefined) {
        txt2 = "t2 is undefined";
    } else {
        txt2 = "t2 is defined";
    }

    txt = txt1 + "<br>" + txt2;
    document.getElementById("demo").innerHTML = txt;
}
</script>

</body>
</html>