Javascript function to get the difference between two numbers
var difference = function (a, b) { return Math.abs(a - b); }
Javascript function to get the difference between two numbers
var difference = function (a, b) { return Math.abs(a - b); }
javascript time between two times
You can just subtract the hours right away doing it this way
var valuestart = $("select[name='timestart']").val();
var valuestop = $("select[name='timestop']").val();
//create date format
var timeStart = new Date("01/01/2007 " + valuestart).getHours();
var timeEnd = new Date("01/01/2007 " + valuestop).getHours();
var hourDiff = timeEnd - timeStart;
Here's the working fiddle http://jsfiddle.net/VnwF7/4/
UPDATE - to calculate if we are including the next day. Just add the following if block
if (hourDiff < 0) {
hourDiff = 24 + hourDiff;
}
http://jsfiddle.net/gfvhqat9/
time difference in javascript
//start timer
console.time();
//your code
//example:
let a = 1000 / 90;
let b = a%(100/90*198) ^ 89 >> 1 << 2;
//stop timer
var timeTakenForCodeToRun = console.timeEnd();
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us