gpt4 book ai didi

javascript - 在 JavaScript 中增加变量的其他方法

转载 作者:可可西里 更新时间:2023-11-01 02:32:58 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Why avoid increment (“++”) and decrement (“--”) operators in JavaScript?

我是 Douglas Crockford 和他的好书 JavaScript: The Good Parts 的忠实粉丝.我也用他的JSLint在将任何代码 checkin 我们的存储库之前每小时使用一次工具,这很明智。

我在通过 JSLint 运行代码时注意到的一件事是它坚持认为++ 增量运算符在某种程度上是邪恶的。我知道我可以关闭某些规则,但那是作弊 ;)。 Crockford 在 JS: TGP 的第 112 页提到了他的不喜欢......

In my own practice, I observed that when I used ++ and --, my code tended to be too tight, too tricky, too cryptic. So, as a matter of discipline, I don't use them any more. I think that as a result, my coding style has become cleaner.

这一切都非常可爱,但他没有给出他现在编码方式的任何示例。我假设他正在做类似...

var i;
i = 0;
i = i + 1;

再一次,很好,但是我的 JS 代码中有一些基本的“for 循环”,我想很多人都有,而且我一直使用标准语法...

for (i = 0; i < myArray.length; i++) { 
// Loop Stuff
}

我错过了什么吗?递增/递减的最简洁和/或最佳方式是什么?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com