How do you reverse a string in place in JavaScript?

前端 未结 30 2426
猫巷女王i
猫巷女王i 2020-11-22 00:29

How do you reverse a string in place (or in-place) in JavaScript when it is passed to a function with a return statement, without using built-in functions (.reverse()<

30条回答
  •  走了就别回头了
    2020-11-22 00:57

    If you don't want to use any built in function. Try this

    var string = 'abcdefg';
    var newstring = '';
    
    for(let i = 0; i < string.length; i++){
        newstring = string[i] += newstring;
    }
    
    console.log(newstring);
    

提交回复
热议问题