Tag: breadcrumbs

如何在满足特定条件时停止JavaScript函数

我无法find一种推荐的方法来在给定的条件满足时部分停止function。 像退出或rest? 我目前正在使用这个: If ( x >= 10 ) { return; } other conditions;