Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 303 Bytes

echo.md

File metadata and controls

15 lines (9 loc) · 303 Bytes

echo (value)

Print one or more values to stdout.

Provides the same functionality as the shell builtin of the same name.

NOTE: This can print any value, not just strings.

echo is functionally identical to console.log.

const echo: typeof console.log;