Skip to content

Commit 6139e58

Browse files
yashLadhalpinca
authored andcommitted
doc: added details around console.timeEnd changes
Since PR #29251 is merged into master, the implementation of `console.timeEnd` is not to print the milliseconds on the stdout but instead print a more readable time unit on the console. For example if the total time comes out to be 3456 milliseconds, it will be printed as 3.45 seconds so that it is much more readable and consistent. PR-URL: #35027 Fixes: #35011 Refs: #29251 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent fdf0a84 commit 6139e58

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/api/console.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,8 @@ added: v0.1.104
418418
Starts a timer that can be used to compute the duration of an operation. Timers
419419
are identified by a unique `label`. Use the same `label` when calling
420420
[`console.timeEnd()`][] to stop the timer and output the elapsed time in
421-
milliseconds to `stdout`. Timer durations are accurate to the sub-millisecond.
421+
suitable time units to `stdout`. For example, if the elapsed
422+
time is 3869ms, `console.timeEnd()` displays "3.869s".
422423

423424
### `console.timeEnd([label])`
424425
<!-- YAML

0 commit comments

Comments
 (0)