Skip to content

Commit

Permalink
Update script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
onlinemax authored Apr 20, 2024
1 parent f8c46dd commit 4d2e583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function getDate(lang){
const now = new Date();
text += now.getDate() + (lang == "fr" ? "" : "nd") + " ";
text += monthNames[now.getMonth() + (lang == "fr" ? 0 : 12)] + " ";
text += now.getFullYear() + "]";
text += (lang == "fr" ? "" : "of ") + now.getFullYear() + "]";
return text;
}

Expand Down

0 comments on commit 4d2e583

Please sign in to comment.