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 ((items.length > 0) && ($item.length > 0)) { // Do Something... }
下面假设items和$items是数组
items
$items
只需使用items.lengthwhich 将适用于> 0
items.length
> 0
if (items.length && $items.length)
您可以删除 > 0 并使用真实的性质,因为 0 是错误的。
if (items.length && $item.length) {