You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's much convenient way to use post-fix operator "!" with object destructuring as
const{ a!, b!, c!}=data;
instead of
consta=data.a!;constb=data.b!;data.c!();
because later in code we can use new variables many times and right now it required to use operator ! for each usage of the variable in case when strictNullChecks is enabled.
The text was updated successfully, but these errors were encountered:
It's much convenient way to use post-fix operator "!" with object destructuring as
instead of
because later in code we can use new variables many times and right now it required to use operator
!
for each usage of the variable in case whenstrictNullChecks
is enabled.The text was updated successfully, but these errors were encountered: