Answers for "javascript get this day"

6

get start of day javascript

var start = new Date();
start.setHours(0,0,0,0);

var end = new Date();
end.setHours(23,59,59,999);

alert( start.toUTCString() + ':' + end.toUTCString() );
Posted by: Guest on May-26-2020
4

javascript get day

var d = new Date();
var n = d.getDay();
Posted by: Guest on July-21-2020
2

new date getday js

Date.getDay()
// Javascript date getDay() method returns the day of the week for the specified
// date according to local time. The value returned by getDay() is an integer 
// corresponding to the day of the week: 0 for Sunday, 1 for Monday, 2 for Tuesday, and so on.
Posted by: Guest on April-12-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language