Quantcast
Channel: PipisCrew Official Homepage
Viewing all articles
Browse latest Browse all 11347

JavaScript console tricks

$
0
0

One other trick I found useful is the console.table() method.

http://www.codediesel.com/javascript/javascript-console-tricks/

var payments = [
{date: "2011-11-14T16:17:54Z", quantity: 2, total: 190, tip: 100, type: "tab"},
{date: "2011-11-14T16:20:19Z", quantity: 2, total: 190, tip: 100, type: "tab"},
{date: "2011-11-14T16:28:54Z", quantity: 1, total: 300, tip: 200, type: "visa"}];

console.table(payments);

Viewing all articles
Browse latest Browse all 11347

Trending Articles