Created
January 6, 2021 22:16
-
-
Save Midoukh/bfaa578c719f30c945826c6bcf53ff20 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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