pm2/examples/v1/json.js
2016-08-07 02:16:13 -07: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);