Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

Moment js get first and last day of current month

const startOfMonth = moment().startOf('month').format('YYYY-MM-DD hh:mm');
const endOfMonth   = moment().endOf('month').format('YYYY-MM-DD hh:mm');
Comment

get days in current month using moment.js

moment().daysInMonth();
Comment

moment js get date 1 month

var currentDate = moment('2015-10-30');
var futureMonth = moment(currentDate).add(1, 'M');
var futureMonthEnd = moment(futureMonth).endOf('month');

if(currentDate.date() != futureMonth.date() && futureMonth.isSame(futureMonthEnd.format('YYYY-MM-DD'))) {
    futureMonth = futureMonth.add(1, 'd');
}

console.log(currentDate);
console.log(futureMonth);
Comment

get first day of month javascript moment

const startOfMonth = moment().clone().startOf('month').format('YYYY-MM-DD hh:mm');
const endOfMonth   = moment().clone().endOf('month').format('YYYY-MM-DD hh:mm');
Comment

moment get month day

//The correct function to use is .date():

date.date() === 25;
Comment

PREVIOUS NEXT
Code Example
Javascript :: last element of array javascript 
Javascript :: remove parent tr jquery 
Javascript :: creare component in anglar 
Javascript :: Codewars Find the smallest integer in the array 
Javascript :: click on child prevent click on parent 
Javascript :: angular input force uppercase 
Javascript :: javascript loop with delay 
Javascript :: jquery if input has empty white space 
Javascript :: circle button react native 
Javascript :: vue get height of element ref 
Javascript :: next js install swr 
Javascript :: how to give a label padding through jquery 
Javascript :: generate random brightest color 
Javascript :: messageReactionAdd 
Javascript :: react native community eslint 
Javascript :: node.js mysql create table 
Javascript :: reactdom.render is no longer supported in react 18 
Javascript :: onchange event angular select 
Javascript :: vscode ejs formatter 
Javascript :: gdscript emit signal 
Javascript :: Please delete and rebuild the package with Ivy partial compilation mode, before attempting to publish. 
Javascript :: jquery create a button 
Javascript :: vue jest trigger input string 
Javascript :: effect jquery 
Javascript :: regex password 
Javascript :: japan 
Javascript :: scroll to bottom of a div 
Javascript :: JS node instal fs 
Javascript :: mongoose virtual populate not working 
Javascript :: how to change the staticness of a object in matter.js 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =