Javascript絕句欣賞 一些經典的js代碼

來源:互聯網
上載者:User

1. 取整同時轉成數值型:
'10.567890′|0
結果: 10
'10.567890′^0
結果: 10
-2.23456789|0
結果: -2
~~-2.23456789
結果: -2
2. 日期轉數值:
var d = +new Date(); //1295698416792
3. 類數組對象轉數組:
var arr = [].slice.call(arguments)
4. 漂亮的隨機碼:
Math.random().toString(16).substring(2); //14位
Math.random().toString(36).substring(2); //11位
5. 合并數組:
var a = [1,2,3];
var b = [4,5,6];
Array.prototype.push.apply(a, b);
uneval(a); //[1,2,3,4,5,6]
6. 用0補全位元:
function prefixInteger(num, length) {
return (num / Math.pow(10, length)).toFixed(length).substr(2);
}
7. 交換值:
a= [b, b=a][0];
8. 將一個數組插入另一個數組的指定位置:
var a = [1,2,3,7,8,9];
var b = [4,5,6];
var insertIndex = 3;
a.splice.apply(a, Array.concat(insertIndex, 0, b));
// a: 1,2,3,4,5,6,7,8,9
9. 刪除數組元素:
var a = [1,2,3,4,5];
a.splice(3,1);
10. 快速取數組最大和最小值
Math.max.apply(Math, [1,2,3]) //3
Math.min.apply(Math, [1,2,3]) //1
(出自http://ejohn.org/blog/fast-javascript-maxmin/)
11. 條件判斷:
var a = b && 1;
相當於
if (b) {
a = 1
}
var a = b || 1;
相當於
if (b) {
a = b;
} else {
a = 1;
}
12. 判斷IE:
var ie = /*@cc_on !@*/false;
還有嗎?歡迎回應
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.