zh.javascript.info icon indicating copy to clipboard operation
zh.javascript.info copied to clipboard

9.1 Tasks, there is a mistake in sandbox for the task,

Open Yunhulalala opened this issue 1 year ago • 0 comments

Note that in your code, there is a mistake in "if (mins < 10) min = '0' + mins;". It should be "mins" instead of "min". The correct way to write it is "if (mins < 10) mins = '0' + mins;". image

Yunhulalala avatar Dec 24 '24 01:12 Yunhulalala