标签: javascript
我想使用for循环添加偶数:
var x = ""; i = 10; for (i <= 50) { if (!(i / 2 == 0)) { x + i; } } alert(x);