javascript date now human readable

Solutions on MaxInterview for javascript date now human readable by the best coders in the world

showing results for - "javascript date now human readable"
Moritz
17 Jul 2017
1const today = new Date();
2
3function formatDate(date, format) {
4	//
5}
6
7formatDate(today, 'mm/dd/yy');