摘要: 转换成布尔值为false的类型 console.log(Boolean("")) //false console.log(Boolean(0)) //false console.log(Boolean(undefined)) //false console.log(Boolean(null)) // 阅读全文
posted @ 2023-10-20 21:32 一叶知秋04 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 大家肯定为this指向的问题感到烦恼,接下来让我为大家介绍六种改变this指向的方法吧! 1、在指定位置定义this存为变量 // 在指定位置定义this存为变量 // 我们可以自己存一个变量 let _this = this const obj = { fun(){ console.log(_th 阅读全文
posted @ 2023-10-20 16:09 一叶知秋04 阅读(1086) 评论(0) 推荐(0) 编辑