-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Description
continuation/examples/clock/clock.c.js
Line 19 in 73b9552
| text = (h >= 10 ? h : '0' + h) + ':' + (h >= 10 ? m : '0' + m) + ':' + (h >= 10 ? s : '0' + s); |
text = (h >= 10 ? h : '0' + h) + ':' + (h >= 10 ? m : '0' + m) + ':' + (h >= 10 ? s : '0' + s);
should be:
text = (h >= 10 ? h : '0' + h) + ':' + (m >= 10 ? m : '0' + m) + ':' + (s >= 10 ? s : '0' + s);
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels