Answers for "use dayjs from now javascript"

9

how to get date time day year in javscript

var today = new Date();
var date = today.getFullYear()+'-'+(today.getMonth()+1)+'-'+today.getDate();
Posted by: Guest on April-21-2020
1

how to get day from javascript date

var days = ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'];
var months = ['January','February','March','April','May','June','July','August','September','October','November','December'];

var day = days[ now.getDay() ];
var month = months[ now.getMonth() ];
Posted by: Guest on April-12-2022
9

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