pm2/examples/json.js
2014-08-05 11:51:30 +02:00

13 lines
175 B
JavaScript

setInterval(function() {
console.log({
hey : 'hay',
ho : {
si : 'si',
ca : ['boum']
}
});
var a = {a: 'a', b: 'b'};
console.log(a);
}, 1000);