How set the current date as select in calendar?

How set the current date as select in calendar, automatically?

Thanks

var calendar = app.calendar.create({
  // ...
});

// set today
calendar.setValue([ new Date() ])
1 Like

Thx, very much, easy solution