a library to speed up the development of Fivem scripts and frameworks
fivem-ts - Documentation v0.7.5 • Docs
fivem-ts - Documentation v0.7.5 / Shared / reverseString
reverseString(
input
):string
Reverses the characters in a string.
• input: string
The string to be reversed.
string
The reversed string.
const result = reverseString("Hello");
console.log(result); // "olleH"