数组操作
文章平均质量分 63
woshifan1989
WEB前端小友
展开
-
数组-去掉重复内容
Array.prototype.unip = function () { var temp = {}, len = this.length; for (var i = 0; i if (typeof temp[this[i]] == "undefined") { temp[t原创 2013-04-15 10:21:53 · 521 阅读 · 0 评论 -
格式化数字(123456789-->123,456,789)
show一段格式化数字的代码,主要用于money /** * 格式化数字 123456789-->123,456,789 * @param number * @return string */ function reverseNum(num){ if(typeof num !== "undefined"){原创 2013-05-29 14:05:33 · 2669 阅读 · 0 评论