Details
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.