js 字符串反转(倒序) 3种方法总结

方法1:首先将字符串转为数组,再反转数组,最后将数组转为字符串

  let str = 'I Love You';
        function r(n) {
            let newStr = n.split('').reverse().join('');
            console.log(newStr);
        }
        r(str)

方法2:遍历str,charAt() 是提取字符串的一个字符

  let str = 'I Love You';
  let newStr = '';
        function r(n){
            for(let i =0;i

方法3:通过call方法来改变slice方法的执行主体,字符串转为数组,再反转数组,最后将数组转为字符串

let str = 'I Love You';
        function r(n) {
            let newStr = Array.prototype.slice.call(n);
            console.log(newStr.reverse().join(''));
        }
        r(str);

你可能感兴趣的:(前端,javascript)