Skip to content

Instantly share code, notes, and snippets.

@Midoukh
Created January 6, 2021 22:16
Show Gist options
  • Save Midoukh/bfaa578c719f30c945826c6bcf53ff20 to your computer and use it in GitHub Desktop.
Save Midoukh/bfaa578c719f30c945826c6bcf53ff20 to your computer and use it in GitHub Desktop.
//half index switch for loop
function reverseString6(str){
let arr = str.split('');
let len = arr.length, halfIndex = Math.floor(len / 2) - 1, tmp;
for (let i = 0; i <= halfIndex; i++) {
tmp = arr[len - i - 1];
arr[len - i - 1] = arr[i];
arr[i] = tmp;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment