console.log
Write a line of text to the logs, This function is commonly used to debug or output status updates from scripts into console.
js
console.log(outputText);
console.log(outputText);
Parameters
outputText
- the line of text to output.
Example
js
console.log('The processes has commenced');
console.log('The processes has commenced');