Skip to content
This repository has been archived by the owner on Nov 14, 2019. It is now read-only.
NV edited this page Aug 12, 2010 · 5 revisions

console.js

without console.js with console.js
Opera
IE 8
IE < 8
alert('Hello!')
>>> Hello!
alert({x:5, y:3})
>>> [object Object]
alert(document.body)
>>> [object HTMLBodyElement]
console.log('Hello!')
>>> 'Hello!'
console.log({x:5, y:3})
>>> { 'x': 5, 'y': 3}
console.log(document.body)
>>> <BODY class="timeline" id="home">
Firefox Firebug same
Google Chrome same
Safari same

Bookmarklet: console.js.

Clone this wiki locally