Batch.echo
The echo function is used to display a message in the batch console.
Sample
var batch = new Batch();
batch.echo("good morning!").echo("good night!");
API
| Calling | Returning |
|---|---|
batch. echo ( message ) |
Batch |
| Parameters | Type | Description |
|---|---|---|
message |
String |
The information to show in the batch console. |