zh.javascript.info
zh.javascript.info copied to clipboard
9.1 Tasks, there is a mistake in sandbox for the task,
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;".