js中 $=window.$ || { } ,是什么意思?

2024年11月20日 00:27
有1个网友回答
网友(1):

等价于:

if(window.$!=null){

    $=window.$;
}else{

    $={};
}