Miscellaneous

info

Writes zero or more values as an informational message.

문법

info(...values?: ...any)

인수

이름타입설명
...values?...anyOptional values to print as an informational message.

설명

Writes zero or more values as an informational message. Values are converted to strings and separated with tab characters. The function returns no values.

1개 파라미터로 호출합니다: ...values. 인수 표는 필수 값과 동작을 조정하는 값을 설명합니다.

데이터를 반환하지 않습니다. 호출을 동작으로 보고 필요하면 호출 위치에서 오류를 처리하세요.

예제

Write an informational message to the active console output.

info("Loaded", "scripts", 3)