10 2020 档案
摘要:数据类型 number string boolean null undefined object ( array function ) 内置对象 Number String Boolean Object Array Function Date RegExp Error null和undefined没
阅读全文
摘要:默认绑定 隐式绑定 隐式丢失 显式绑定 call apply bind (API调用的"上下文") new 绑定 被忽略的 this 如果你把 null 或者 undefined 作为this的绑定对象传入 call apply bind 这些值在调用时会被忽略,实际应用的时默认绑定规则 小结 如果
阅读全文
摘要:相同点: || && 对第一个值进行布尔值运算 不同点: || 第一个值为true 返回第一个值 第一个值为false 返回第二个值 注意不是布尔值&& 第一个值true 返回第二个值 第一个值为false 返回第一个值 var r = 'abc' || 123; console.log(r); /
阅读全文
浙公网安备 33010602011771号