JS小技巧大本事(持續更新)

來源:互聯網
上載者:User

標籤:style   blog   color   io   cti   代碼   

1. 複製N個字元
1 String.prototype.repeat = function(num){2     return (new Array(++num)).join(this);3 }4  5 var a = ‘A‘;6 a.repeat(5);  //‘AAAAA‘
 2. 替代if…else…
1 var result;2 3 result = isTrue ? something : anotherthing;4 result = something || anotherthing;5 result = something && anotherthing;

 

 

3. 多條件判斷

Maybe:

 

 1 function yourFun(status){ 2     var color; 3     switch(status){ 4         case 0: 5             color = ‘white‘; 6             break; 7         case 1: 8             color = ‘red‘; 9             break;10         case 2:11             color = ‘yellow‘;12             break;13         case 3:14             color = ‘green‘;15             break;16         case 4:17             color = ‘blue‘;18             break;19     }20 21     return color;22 }

 

Better:

1 function yourFun(status){2     return [‘white‘, ‘red‘, ‘yellow‘, ‘green‘, ‘blue‘][status]3 }

 

 

 .Thinking

保證代碼可讀性,靈活應用JS代碼技巧。一方面提升自己的編碼能力,一方面加深對JS的理解。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.