颠倒字符串需要用到的三大基友 .reverse() .split('') .join('')

          var string = "Welcome to this China!";
                console.log(string)
                let a = string.split('') // 分隔成一个个的字符数组
                // ["W", "e", "l", "c", "o", "m", "e", " ", "t", "o", " ", "t", "h", "i", "s", " ", "C", "h", "i", "n", "a", "!"]
                console.log(a)
                let b = a.reverse() // 于颠倒数组中元素的顺序
                // ["!", "a", "n", "i", "h", "C", " ", "s", "i", "h", "t", " ", "o", "t", " ", "e", "m", "o", "c", "l", "e", "W"]
                console.log(b)
                let c = b.join('') // 把数组中的所有元素放入一个字符串
                // !anihC siht ot emocleW
                console.log(c)    

 

 

posted @ 2020-12-02 14:16  星期7  阅读(75)  评论(0编辑  收藏  举报