General API
log()
Outputs the passed arguments to the console.
- Accepts any arguments.
Example:
log(1);
// 1
log(1, '2');
// 1 '2'
log(1, '2', {key: 'value'});
// 1 '2' {key: 'value'}
log(1);
// 1
log(1, '2');
// 1 '2'
log(1, '2', {key: 'value'});
// 1 '2' {key: 'value'}