mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
13 lines
175 B
JavaScript
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);
|