Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

moment js date diff

var now  = "04/09/2013 15:00:00";
var then = "02/09/2013 14:20:30";

var ms = moment(now,"DD/MM/YYYY HH:mm:ss").diff(moment(then,"DD/MM/YYYY HH:mm:ss"));
var d = moment.duration(ms);
var s = d.format("hh:mm:ss");

// outputs: "48:39:30"
Comment

moment date difference in days

moment(new Date()).diff(moment(new Date()), 'days') // 0
Comment

compare two dates using moment

moment('2010-10-20').isAfter('2010-01-01', 'year'); // false
moment('2010-10-20').isAfter('2009-12-31', 'year'); // true
Comment

getting days difference with moment js

var a = moment([2007, 0, 29]);
var b = moment([2007, 0, 28]);
a.diff(b, 'days') // 1
Comment

moment js difference between two dates

var admission = moment('{date1}', 'DD-MM-YYYY'); 
var discharge = moment('{date2}', 'DD-MM-YYYY');
discharge.diff(admission, 'days');
Comment

days difference in moment js

var now = moment(new Date()),
end = moment(fd),
days = end.diff(now, 'days');
Comment

moment js between two dates

// moment version => 2.13.0.
const start = moment().subtract(1, 'days');
const end = new Date();
const actual = moment().subtract(1, 'hours');
const test = moment(actual).isBetween(start, end);
console.log(test);
  
// moment version < 2.13.0.
var startDate = new Date(2013, 1, 12)
  , endDate   = new Date(2013, 1, 15)
  , date  = new Date(2013, 2, 15)
  , range = moment().range(startDate, endDate);
range.contains(date);
Comment

Moment.js: Date between dates

You can use one of the moment plugin -> moment-range to deal with date range:

var startDate = new Date(2013, 1, 12)
  , endDate   = new Date(2013, 1, 15)
  , date  = new Date(2013, 2, 15)
  , range = moment().range(startDate, endDate);

range.contains(date); // false
Comment

Date Difference Moment js

var dateofvisit = moment('{visit}', 'DD-MM-YYYY');
var today = moment();
today.diff(dateofvisit, 'days');
Comment

get all dates between two dates in moment js

<!DOCTYPE html>
<html>
<head>
    <title>jquery moment example - NiceSnippets.com</title>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js" crossorigin="anonymous"></script>
</head>
<body>
    <h1>jquery moment example - NiceSnippets.com</h1>
</body>
<script type="text/javascript">
    var getDaysBetweenDates = function(startDate, endDate) {
        var now = startDate.clone(), dates = [];
  
        while (now.isSameOrBefore(endDate)) {
            dates.push(now.format('MM/DD/YYYY'));
            now.add(1, 'days');
        }
        return dates;
    };
  
    var startDate = moment('2021-01-01');
    var endDate = moment('2021-01-06');
  
    var dateList = getDaysBetweenDates(startDate, endDate);
    console.log(dateList);
</script>
</html>
Comment

date difference without weekends using moment js

// npm i moment --save
// npm i moment-business-days --save

var moment = require('moment');
var moment_business_days = require('moment-business-days');

//use this if it works for you
//var date_count = moment_business_days('2022-06-20', 'MM-DD-YYYY').businessDiff(moment_business_days('2022-07-08','MM-DD-YYYY'));

function countDateRange(start_date, end_date, included_days = [0, 1, 2, 3, 4, 5, 6]){ // 0 as Sunday - 6 as Saturday
    //set working days
  	moment_business_days.updateLocale('us', {
    	workingWeekdays: included_days
    });
	
  	//get difference between dates
    var date_diff = moment(end_date).diff(moment(start_date), 'days')
    var result = 0
    var date = start_date
	
    //check first day
    if(moment_business_days(date, 'YYYY-MM-DD').isBusinessDay()){
    	result += 1
    }
    
  	//check all days
    for (let i = 1; i <= date_diff; i++) {
        date = moment(date).add(1, 'days').format("YYYY-MM-DD")

        if(moment_business_days(date, 'YYYY-MM-DD').isBusinessDay()){
          	result += 1
        }
    }

    return result
}

var date_count = countDateRange('2022-06-20', '2022-07-08', [1, 2, 3, 4, 5])
console.log(date_count)
Comment

moment js date between two dates

target.isBetween(start, finish, 'days', '()') // default exclusive
target.isBetween(start, finish, 'days', '(]') // right inclusive
target.isBetween(start, finish, 'days', '[)') // left inclusive
target.isBetween(start, finish, 'days', '[]') // all inclusive
Comment

get difference in minutes moment

<!DOCTYPE html>
<html>
<head>
    <title>jquery moment example - ItSolutionStuff.com</title>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js" crossorigin="anonymous"></script>
</head>
<body>
  
<h1>jquery moment example - ItSolutionStuff.com</h1>
  
</body>
  
<script type="text/javascript">
    
    var startTime = moment('02-01-2021 01:01:01', 'DD-MM-YYYY hh:mm:ss');
    var endTime = moment('03-01-2021 16:52:53', 'DD-MM-YYYY hh:mm:ss');
  
    var hoursDiff = endTime.diff(startTime, 'hours');
    console.log('Hours:' + hoursDiff);
  
    var minutesDiff = endTime.diff(startTime, 'minutes');
    console.log('Minutes:' + minutesDiff);
  
    var secondsDiff = endTime.diff(startTime, 'seconds');
    console.log('Seconds:' + secondsDiff);
       
</script>
  
</html>
Comment

PREVIOUS NEXT
Code Example
Javascript :: merge 2 array of object by key 
Javascript :: java script login system 
Javascript :: how to use saved image on react 
Javascript :: link in directive angularjs 
Javascript :: javascript debounce 
Javascript :: cast object to string javascript 
Javascript :: convert a string to an array javascript 
Javascript :: convert an object to an array 
Javascript :: how to convert string to camel case in javascript 
Javascript :: how to remove property of object in javascript without delete 
Javascript :: javascript show page 
Javascript :: js fast inverse square root 
Javascript :: moment is date equals 
Javascript :: change text in html with javascript 
Javascript :: preventdefault not working form submit react 
Javascript :: onload submit form only once 
Javascript :: use jq to update json file 
Javascript :: convert int to timestanp js 
Javascript :: momentjs utcoffset 
Javascript :: Javascript stringify with functions 
Javascript :: javascript size array 
Javascript :: how to validate email in node js 
Javascript :: react native text style example 
Javascript :: replace all with regex 
Javascript :: js map object to array 
Javascript :: Javascript How to push a key value pair into a nested object array 
Javascript :: string concat javascript 
Javascript :: check box jquery 
Javascript :: js input trigger oninput event 
Javascript :: navigator.geolocation.getCurrentPosition(console.log,console.log) undefined 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =