I wrote in cell D1 the function "=today()", and in google apps script I'm trying to print it in this way:
function myFunction() { const ss = SpreadsheetApp.getActive(); const ws = ss.getSheetByName("date"); const valoreCella = ws.getRange("D1").getValue(); Logger.log(valoreCella);}The result is:
How can I get this format?

