This wiki is for the exclusive use of my friends and colleagues. Account creation and anonymous editing have been turned off.

If you are a friend or colleague of mine, and would like to participate in this project, please send me a message.

If you find these pages useful, please donate to help cover server costs. Thanks!

Difference between revisions of "Console.log"

From OdleWiki
m (Added stub template.)
m (Category:Stub is now handled by Template:Stub)
 
Line 18: Line 18:
  
 
[[Category:JavaScript]]
 
[[Category:JavaScript]]
[[Category:Stub]]
 

Latest revision as of 00:24, 1 May 2017

Stub.png
STUB

This article is a stub. You can help the OdleWiki by expanding it.


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();