F
finecur
Hi,
In my javascript code I have the following code
var left, right;
left = ...
right = ..
if (right > left){
...
}else{
alert("left=" + left + " right=" + right + " right>left" + (right
I know in my code right should be larget than left. But the code goes
into the "else" block.
The message in the pop up window is :
left = 75 right=171 right>left=false
This is very strange. I know that must be something wrong in my code.
But I have now clue. Anyone know what kind of bug could trigger this?
Thanks,
fm
In my javascript code I have the following code
var left, right;
left = ...
right = ..
if (right > left){
...
}else{
alert("left=" + left + " right=" + right + " right>left" + (right
}left));
I know in my code right should be larget than left. But the code goes
into the "else" block.
The message in the pop up window is :
left = 75 right=171 right>left=false
This is very strange. I know that must be something wrong in my code.
But I have now clue. Anyone know what kind of bug could trigger this?
Thanks,
fm