Skip to content

Instantly share code, notes, and snippets.

@quickstep25
Last active March 25, 2018 03:08
Show Gist options
  • Save quickstep25/3f91c3e34dbcc4b9f4254f19c4b3e01c to your computer and use it in GitHub Desktop.
Save quickstep25/3f91c3e34dbcc4b9f4254f19c4b3e01c to your computer and use it in GitHub Desktop.
| Variable | Output |
|--|--|
| %s | String |
| %d | Integer |
| %f | Float Point Value |
| %o | DOM Object |
| %0 | JavaScript Object |
| %c | Apply CSS Rules |
Example:
```bash
console.log("Node count: %d, and the time is %f.", document.childNodes.length, Date.now());
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment