構文
info(...values?: ...any)引数
| 名前 | 型 | 説明 |
|---|---|---|
...values? | ...any | Optional 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)