Skip to main content
method Console.log
private
Console.log(...data: any[]): void
Deprecated

Outputs a message to the console

Examples

Example 1

console.log('Hello', 'World', 123);

Parameters

<span>...data</span>: any[]

Return Type

void
Back to top