Typescript functions

From wikinotes
Revision as of 03:11, 11 December 2022 by Will (talk | contribs) (→‎Type Annotations)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Type Annotations

function toInt(msg: string): number {
    return parseInt(msg);
}