2021年2月17日

摘要: 1.保留两位小数,千分位,加上金额前缀,可以传入字符串或数字 new Intl.NumberFormat('zh-CN', {style: 'currency', currency: 'CNY' , maximumFractionDigits: 2 }).format(123456.78967) / 阅读全文

posted @ 2021-02-17 23:45 猫头唔食鱼 阅读(846) 评论(0) 推荐(0) 编辑

摘要: // set 集合转数组的2种方法 // 1.展开操作符 let s = new Set([1,2,3,4]) console.log([...s]); // 2.Array.from let s2 = new Set([1,2,3,4]) console.log(Array.from(s2)); 阅读全文

posted @ 2021-02-17 08:13 猫头唔食鱼 阅读(6812) 评论(0) 推荐(0) 编辑

摘要: 1.set集合中,+0和-0和0,都认为是同一个元素 // set里面的+0 和 -0 let s = new Set() s.add(+0) s.add(-0) s.add(0) console.log(s.size );// 1 2.set集合中,NaN会被去重 let s2 = new Set 阅读全文

posted @ 2021-02-17 08:00 猫头唔食鱼 阅读(456) 评论(0) 推荐(0) 编辑

摘要: // +0 和 -0 比较 console.log(+0 -0); // true console.log(Object.is(+0,-0)); // false // NaN 比较 console.log(NaN NaN ); // false console.log(Object.is(NaN, 阅读全文

posted @ 2021-02-17 05:42 猫头唔食鱼 阅读(41) 评论(0) 推荐(0) 编辑

摘要: 1.纯数字数组 // 纯数字数组排序 let arr = [3, 4, 5, 1, 2] // 从小到大 console.log(arr.sort()); // 也是从小到大 console.log(arr.sort((a, b) => a - b)); // 从大到小 console.log(ar 阅读全文

posted @ 2021-02-17 05:27 猫头唔食鱼 阅读(37) 评论(0) 推荐(0) 编辑