Markdown

344. Reverse String

Write a function that takes a string as input and returns the string reversed.
Example:
Given s = "hello", return "olleh".

/**
 * @param {string} s
 * @return {string}
 */
var reverseString = function(s) {
    var ans = s.split("").reverse().reduce(function(a,b){return a+b},"");
    return ans;
};

小心處理 "," 不能用replace去取代
因為為了砍掉toString過程中產生的 "," 
會連原本的一起砍

留言