Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 250 Bytes

typescript.md

File metadata and controls

13 lines (9 loc) · 250 Bytes

TypeScript

The ROOT way

Contributed by: Dautomne_

This is the way everyone in the Programmer Nullposting group says is the best.

function isEven(num: number) : boolean{
    return (num % 2 == 0)
}