Skip to content

Commit

Permalink
(docs) Add a small slug for console.trace()
Browse files Browse the repository at this point in the history
Also fix missing quote on console.time.
  • Loading branch information
merriam committed Apr 6, 2017
1 parent f60aef5 commit 4c3bd15
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,18 @@ Draws a table of data if a 2d array or object passed to it

### `console.time`

Creates a new timer under the given name. Call console.timeEnd(name)`
Creates a new timer under the given name. Call `console.timeEnd(name)`
with the same name to stop the timer and print the time elapsed.

### `console.timeEnd`

Stops a timer created by a call to console.time(name) and write the time

### `console.trace`

Prints a stack trace of JavaScript execution at the point
where it is called. The stack trace details the functions on the stack,
as well as the values that were passed as arguments to each function.

### `console.count`

Expand Down

0 comments on commit 4c3bd15

Please sign in to comment.