2020年9月27日

摘要: // new Boolean(false) 为真值 console.log(Boolean(new Boolean(false)) true); // true 阅读全文

posted @ 2020-09-27 23:56 猫头唔食鱼 阅读(368) 评论(0) 推荐(0) 编辑

摘要: 1. Boolean(value) let bn = 3 console.log(Boolean(bn)); // true 2.value ? true :false console.log(bn?true :false); // true 3.!!value console.log(!!bn); 阅读全文

posted @ 2020-09-27 22:35 猫头唔食鱼 阅读(1057) 评论(0) 推荐(0) 编辑

摘要: 函数柯里化是指把函数多个参数,转化成一个参数传入。 一个简单例子 let add = (a, b) => a + b console.log(add(2, 3)); // 函数柯里化 let currying = (a) => (b) => a + b console.log(currying(2) 阅读全文

posted @ 2020-09-27 22:02 猫头唔食鱼 阅读(758) 评论(0) 推荐(0) 编辑