I've been trying to find the documentation for when you can use !.
in javascript/typescript
I know that instead of doing
if (object && object.property) {
}
We can do using !.
if (object!.property) {
}
Are you able to nest the properties? For example.
object!.property!.name