I understand the concept of using double negation prefixes and TypeScript's single postfix (non-null assertion).
However, I am curious about the usage of a double postfix exclamation mark.
/.*verification code is (\d{6}).*/.exec(email.body!!)!![1]
This code snippet was sourced from here.