Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
说,而不是if (condition) { do something }我使用condition && do something. 它在优化方面有改进吗?
if (condition) { do something }
condition && do something
不会。此外,如果代码需要优化,任何现代 JavaScript 引擎都会为您进行必要的优化。
编写清晰的代码。在引擎无法为您解决问题时进行优化。