PDA

Click to See Complete Forum and Search --> : Compare numbers using javascript


JohnSmith
Jun 11th, 2002, 03:57 PM
Using Javascript how can I write this:

if Time1 > 0 and Time2 = 0 then
msgbox

CiberTHuG
Jun 11th, 2002, 04:15 PM
if (Time1 > 0 && Time2 == 0 ) {
alert("Foo");
}


I think. I could be wrong. Double check the doco listed in the sig below.