S
sgajula
Guest
Hello RustyPipe, can you try below code, I tried it and got the answer 25567 days var from = new Date("1/1/1900"); var to = new Date("1/1/1970"); var timeDiff = Math.abs(from.getTime() - to.getTime()); var diffDays = Math.ceil(timeDiff / (1000 * 3600 * 24)); Thanks, Siddeshwar.
Continue reading...
Continue reading...