字符串反转

function reverseStr (str) {
    return str.split('').reverse().join('');
}
posted @ 2019-04-04 10:46  luckiest  阅读(94)  评论(0)    收藏  举报