Difference between revisions of "Console.log"
From OdleWiki
m (Adding examples) |
m (Category:Stub is now handled by Template:Stub) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | {{Template:Stub}} | ||
+ | |||
'''console.log()''' outputs whatever information is contained within the parentheses (whether variable, string, or function) and logs it to the [[browser console]]. | '''console.log()''' outputs whatever information is contained within the parentheses (whether variable, string, or function) and logs it to the [[browser console]]. | ||
Line 16: | Line 18: | ||
[[Category:JavaScript]] | [[Category:JavaScript]] | ||
− |
Latest revision as of 00:24, 1 May 2017
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();