Closed DariosKrimsKrams closed 3 years ago
If you can not be sure, that a property "day" is set, don't use "!" with day!: string;, but instead use day: string | undefined;
day!: string;
day: string | undefined;
If you can not be sure, that a property "day" is set, don't use "!" with
day!: string;
, but instead useday: string | undefined;