Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 389 Bytes

print.md

File metadata and controls

12 lines (8 loc) · 389 Bytes

print (function)

print is an alias for console.log, which prints values to stdout.

Any value can be logged, not just strings. Non-string values will be formatted using inspect.

declare function print(...args: any): void;