Skip to main content
variable reverseString
import { reverseString } from "https://deno.land/x/30_seconds_of_typescript@v1.0.1/util.ts";

Reverses a string.

Use the spread operator (...) and Array.prototype.reverse() to reverse the order of the characters in the string. Combine characters to get a string using String.prototype.join('').

type

(str: string) => unknown