Search Docs
reverse
反转 str 中字符的顺序。
str
import { reverse } from 'funtool' reverse('hello'); // 'olleh'
function reverse(str: string): string
string