Answers for "js tolocalestring without seconds"

0

js tolocalestring without seconds

var dateWithouthSecond = new Date();
dateWithouthSecond.toLocaleTimeString([], {hour: '2-digit', minute:'2-digit'});
Posted by: Guest on August-24-2021
0

js tolocalestring without seconds

var dateWithoutSecond = new Date();
dateWithoutSecond.toLocaleTimeString([], {year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit'});
Posted by: Guest on August-24-2021

Code answers related to "js tolocalestring without seconds"

Code answers related to "Javascript"

Browse Popular Code Answers by Language