Skip to content

reverseString

reverseString(string) → string · String

Reverse the characters in a string.

  • string (required): the string to reverse
utlx
reverseString("hello")                   // "olleh"

Released under AGPL-3.0.