Skip to content

Instantly share code, notes, and snippets.

@cicconewk
Created May 9, 2019 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cicconewk/151c7494f0fc86c25767e184e275e5a2 to your computer and use it in GitHub Desktop.
Save cicconewk/151c7494f0fc86c25767e184e275e5a2 to your computer and use it in GitHub Desktop.
Reverse array of strings
function reverseStrings (strings_array) {
if (!Array.isArray(strings_array)) {
return -1
}
const reversed_strings = strings_array.map(str => str.split('').reverse().join(''))
return reversed_strings
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment