JavaScript
努力努力再努力zh
这个作者很懒,什么都没留下…
展开
-
数组去重若干方法
var arr = [0, 0, 0, 0, 1, null, 1, null, 4, 4, undefined, undefined, 2, 2, 3, 3, 4]; // for循环 function uniqueArr1 (array) { var _arr = []; for (var i = 0; i< array.length; i++) { if (!_arr.includes(array[i])) { _arr.push(array[i]); }原创 2021-05-19 15:23:24 · 91 阅读 · 0 评论 -
JS时间格式化,封装函数
1.函数封装date.js Date.prototype.format = function(format) { let o = { "M+": this.getMonth() + 1, "d+": this.getDate(), "H+": this.getHours(), "m+": this.getMinutes(), "s+": this.getSeconds(), "q+&q原创 2018-11-29 10:24:23 · 2834 阅读 · 0 评论