Console.log
From OdleWiki
console.log() outputs whatever information is contained within the parentheses (whether variable, string, or function) and logs it to the browser console.
Examples
Logging a String
console.log( "The script has completed." );
Logging the Result of a Function
console.log();