Details
-
Bug
-
Resolution: Fixed
-
P2
-
8
-
b119
-
generic
-
generic
-
Verified
Description
e.g.
function f() {
var TestingStr = "a";
while (TestingStr.length < 3) {
TestingStr = "0" + TestingStr;
}
}
f();
the TestingStr.length < 3 statement says line 4 instead of line 3.
function f() {
var TestingStr = "a";
while (TestingStr.length < 3) {
TestingStr = "0" + TestingStr;
}
}
f();
the TestingStr.length < 3 statement says line 4 instead of line 3.