-
Notifications
You must be signed in to change notification settings - Fork 899
Open
Description
clean-course/src/clean-code/05-dry.ts
Line 18 in eb94920
| if ( (<number><unknown>this[key]) <= 0 ) throw Error(`${ key } is zero`); |
Estuve realizando pruebas y falto validar NaN si llegase a estar como price
mi solucion es:
if (this[key] <= 0 || !this[key]) throw Error(`${key} is zero`);Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels