How do I get the Today date on google appscript?
I need to write a code to input today´s date in a cell.
function changeDate(){ var sheet = Spreadsheet
Google Apps Script is JavaScript, the date object is initiated with new Date() and all JavaScript methods apply, see doc here
new Date()