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