I am working through the tutorials for Javascript. I was testing out the Boolean() function and the If...Else conditions.
I have a single button on a website. When I click the button it displays the current state of a boolean variable (myvar) and also the corresponding state (myvartxt) (ie. false means "OFF", true means "ON"). The reason for this is because I want to, later on, toggle an LED ON/OFF and don't want it to say false/true but rather ON/OFF.
Now the problem is when I click the button the state of the boolean (myvar) is false which is correct, BUT the myvartxt variable is ON when it should say OFF. I just don't understand. Any ideas? Thanks for your help in advance!
Test out code quickly here:
<!DOCTYPE html>
<html>
<body>
<p id="demo"></p>
<p id="demo1"></p>
<button onclick="myFunction()">Try it</button>
<script type="text/javascript">
function myFunction()
{
//Initial state
var myvar=new Boolean(0);
var myvartxt = "OFF";
//display current state of Boolean
var x=document.getElementById("demo");
x.innerHTML=myvar.toString();
//display corresponding ON -> true, OFF -> false
if (myvar) //INITIALLY THIS IS false (not a string) so why does it think this is true?
{
myvartxt = "ON";
}
else
{
myvartxt = "OFF";
}
var y=document.getElementById("demo1");
y.innerHTML=myvartxt;
}
</script>
</body>
</html>