0

我正在用 JavaScript 编写代码并检测到这种我无法解释的奇怪行为。

for (i in bubbles){

bubbles[i].string = "some stuff!" // <- no errors here

results[0] = i - 1 
results[1] = i + 1
results[2] = parseInt(i) + 1 


}

i = 1这种情况发生时

results[0] -> 0
results[1] -> 11
results[2] -> 2

这甚至可能吗?也许是由于代码中的其他错误。我试图隔离上面的情况,但是,如果你需要它,这里是整个代码

for (i in bubbles){

            if (bubbles[i].check()){

                // define which boubble has been clicked and start dragging
                bubbleDrag[2] = bubbles[i].check();
                bubbleDrag[1] = i;
                bubbleDrag[0] = true;

                // define where to check to avoid overlapping dates
                if (i != 0 && i < bubbles.length - 1){

                    bubbleDrag[3] = i - 1;
                    bubbleDrag[4] = i + 1;

                } else if (i == 0 && bubbles.lenght > 1){

                    bubbleDrag[3] = i + 1;

                } else if (i == bubbles.lenght - 1){

                    bubbleDrag[3] = i - 1;

                }

            }

        }
4

1 回答 1

1

Javascript 正在解释您的代码。

results[0] = i - 1 
// string minus number, so javascript "assumes" you want "i" as a number

results[1] = i + 1 
// string concatenate with a number, so javascript assumes you want a concatenated string

更多示例。

"30" - 10; // echoes number 20
"30" + 10; // echoes string "3010"

有些人喜欢这样的语言解释,有些人不喜欢。我发现自己属于后者。IMO,字符串 + 数字应该引发错误,因为意图不明确。松散/非严格的解释可能最终导致意想不到的结果。如果您阅读 Douglas Crockford 的一些代码,您会注意到他使用了广泛的严格类型比较(===,!==),这就是原因的一部分。

于 2013-03-20T16:37:49.320 回答