<static> reverseString(string) → {string}
Takes the given string and reverses it, returning the reversed string.
For example if given the string Atari 520ST
it would return TS025 iratA
.
Parameters
Name | Type | Description |
---|---|---|
string | string | The string to be reversed. |
Returns
string -
The reversed string.
- Source code: utils/Utils.js (Line 13)
Please login to continue.