TIL: there is a "trust me, bro!" operator in typescript:
------------------------------------------
The ! is TypeScript's non-null assertion operator. It tells the compiler "trust me, this value is not null or undefined."
------------------------------------------
it never seizes to amaze me.