Node-red "getdate" for rhasspy 2.5

Hi there

From this code https://gist.github.com/koenvervloesem/b76bbdbc2cd77c35760c145c2f710f25#file-gettime-flow-json i want to change the node “gettime”…

var timeString = new Date().toLocaleTimeString([],

{

    hour: "2-digit",

    minute: "2-digit",

    hour12: false

})

return {

    payload: "Es ist " + timeString.replace("Uhr", " ")

}

for additional output with only weekday and date (day/Month).
Unfortunately i’m not really successful to find some helpful example like…

dateString = new Date().toLocaleTimeString([],

, so i would try to find somebody he can help me for this, thanks.

Michael