What's the technical term for things that are checked by a compiler vs things that aren't?
private randomNumber():number { return 5; }
The compiler checks whether the function returns a number, or it's accessed private only, but it won't care if it's called randomNumber or rn