什么是JS的简写形式:

    if (typeof bfMax !== 'undefined') {
        options.max = bfMax;
    }

最佳答案

有条件地赋值的简洁,易读,可维护的简写为:

if (typeof bfMax !== 'undefined') {
    options.max = bfMax;
}


似乎您已经在使用它。

如果要缩小脚本以使其更短,可读性更差且难以维护,可以使用:

typeof bfMax!=='undefined'&&(options.max=bfMax)


当然,您需要换出变量名以使内容更简短:

typeof b!=='undefined'&&(o.max=b)

10-05 20:36