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;
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;