Skip to content

Instantly share code, notes, and snippets.

@sondr3
Created January 4, 2023 22:23
Show Gist options
  • Save sondr3/ea833cdee862e03141ae77d7aab72cee to your computer and use it in GitHub Desktop.
Save sondr3/ea833cdee862e03141ae77d7aab72cee to your computer and use it in GitHub Desktop.
hue hue
const reverseString = (n) => {
for (var i = n.length - 1, o = ""; i >= 0; o += n[i--]) { }
return o;
}
console.log(reverseString("hello"));
console.log(reverseString("world"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment