2018年6月18日 星期一

【JavaScript】字串反轉 spilt(),reverse(), join()


字串反轉

  • split():給以把字串切割成數組 (字串-->數組)
  • reverse():把數組進行反轉(無法直接對字串作用)
  • join():把數組轉成字串  (數組-->字串)
a="Hello"
a.split()         //[Hello]
a.split(" ")     //["H","e","l","l","o"]
a.reverse()     //沒用
a.split(" ").reverse()     //["o","l","l","e","H"]
a.split(" ").reverse().join()     //[olleH]
a.split(" ").reverse().join(,)     //[o,l,l,e,H]

沒有留言:

張貼留言

【JavaScript】用物件Mapping的方法

If的寫法 我們希望當變數是a時就回傳1,變數是b就回傳2,變數是c就會回傳3,一般寫法就是用if,但是這樣會很冗 ​ // IF style var word if(word == 'a'){ word = 1 } else if...