Skip to content

Instantly share code, notes, and snippets.

@lelinhtinh
Created April 5, 2015 06:26
Show Gist options
  • Save lelinhtinh/d1290f1dc2c3ee366a87 to your computer and use it in GitHub Desktop.
Save lelinhtinh/d1290f1dc2c3ee366a87 to your computer and use it in GitHub Desktop.
Đảo ngược chuỗi
function reverseString(inputString) {
return inputString.split("").reverse().join("");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment