Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: JavaScript を使用して 2 つの日付間の日数を計算する方法は?
現在の日付で、どうすれば年齢を日数で取得できるのだろうか。たとえば、1995 年 12 月 4 日の日付では 6435 が返されます。
これを行うライブラリ関数はありますか?
2 つの日付を合成して、それらを減算できます。結果はミリ秒単位になるため、それを日に変換する必要があります。
var days = (new Date() - new Date(1995, 11, 4)) / (1000 * 60 * 60 * 24); // (today) (then) (milliseconds per day)
その後、丸めることができますdays(必要に応じて.
days