上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 33 下一页

2020年9月21日

摘要: Array.from的一个特性:所有具有length属性的对象,并且key是数字,都能被Array.from转为数组 // 用法一:对象转数组 // example 1: let obj = {0:'a',1:'b',2:'c',length:3} console.log( Array.from(o 阅读全文

posted @ 2020-09-21 21:46 猫头唔食鱼 阅读(633) 评论(0) 推荐(0) 编辑

2020年9月7日

摘要: 先看一个错误的例子: arr.forEach((v,i)=>{ if(v>2){ arr.splice(i,1) } }) console.log(arr); // [1,2,4] 删除数组中大于2的元素,但是得到[1,2,4] 正确的写法: 用for循环,注意for的条件 var arr = [1 阅读全文

posted @ 2020-09-07 15:17 猫头唔食鱼 阅读(858) 评论(0) 推荐(0) 编辑

2020年8月6日

摘要: 参数说明: totalfee:千分位数值 souSym:逗号 , tarSym:空字符串 function replaceSymbol(totalfee,souSym,tarSym) { var tlong = totalfee.length; var i = 0; var j = 0; var k 阅读全文

posted @ 2020-08-06 14:00 猫头唔食鱼 阅读(493) 评论(0) 推荐(0) 编辑

摘要: 把后台获取的key,替换成自己的key var arr = [ { nameTest: 'zs', ageTest: 12 }, { nameTest: 'ls', ageTest: 13 }, ] // 把对象里的key nameTest和ageTest分别替换成name和age var keyM 阅读全文

posted @ 2020-08-06 09:15 猫头唔食鱼 阅读(662) 评论(0) 推荐(0) 编辑

摘要: Object.assign(obj1,obj2) 例子: var obj = { name:'zs', age:12 } var obj2 = { addr:'gz', name:'ww' // 如果有重复属性,则后面的属性替换前面的 } console.log( Object.assign(obj 阅读全文

posted @ 2020-08-06 09:12 猫头唔食鱼 阅读(361) 评论(0) 推荐(0) 编辑

2020年7月21日

摘要: 1.找出数组中最大的元素 const arrayMax = arr => Math.max(...arr); arrayMax([2,3,4]) // 4 2.数组去重 const unique = arr => [...new Set(arr)]; unique([1,2,3,1]) // [1, 阅读全文

posted @ 2020-07-21 19:18 猫头唔食鱼 阅读(261) 评论(0) 推荐(0) 编辑

2020年7月2日

摘要: document.domain // 返回当前网站的域名 document.cookie // 获取所有cookie document.title // 当前文档标题 document.URL // 当前文档的地址 // document.location.href 和 window.locatio 阅读全文

posted @ 2020-07-02 15:48 猫头唔食鱼 阅读(183) 评论(0) 推荐(0) 编辑

摘要: num.toFix(n) 把数字四舍五入保留n位小数 var a = 123.789 a.toFixed(2) // 123.79 阅读全文

posted @ 2020-07-02 15:11 猫头唔食鱼 阅读(247) 评论(0) 推荐(0) 编辑

摘要: var date = new Date() console.log(date.getDate()); // 一个月里的第几天 console.log(date.getFullYear()); // 年 console.log(date.getMonth()+1); // 月 console.log( 阅读全文

posted @ 2020-07-02 14:54 猫头唔食鱼 阅读(371) 评论(0) 推荐(0) 编辑

摘要: 使用toLocaleString()方法可以把数字转换千分位格式 var a = 12345678 console.log(a.toLocaleString()) // 12,345,678 阅读全文

posted @ 2020-07-02 11:18 猫头唔食鱼 阅读(355) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 33 下一页