日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

年龄计算

發(fā)布時(shí)間:2023/12/14 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 年龄计算 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

年齡計(jì)算得出周歲,不精確算出月日,即只顯示幾歲

/*** 根據(jù)生日得到年齡* @param {String | Date | Number} [birthday] 生日* @returns {Number}*/ function getAgeByBirth(birthday){let age;const nowDate = new Date();const birthDate = birthday ? new Date(birthday) : new Date();const nowY = nowDate.getFullYear();const birthY = birthDate.getFullYear();const nowM = nowDate.getMonth();const birthM = birthDate.getMonth();const nowD = nowDate.getDate();const birthD = birthDate.getDate();if (nowDate.getTime() < birthDate.getTime()) {age = 0;} else {if (nowY == birthY) {age = 0;} else {age = nowY - birthY;if (nowM < birthM) {age--;} else if (nowM == birthM && nowD < birthD) {age--;}}}return age; }

計(jì)算歲數(shù)精確到天

最近遇到需求要計(jì)算出不足兩歲的得出一歲幾月,不足一歲的得出幾月幾天,不足月的得出幾天。由于計(jì)算天數(shù)涉及到獲取前一月份天數(shù),月份天數(shù)涉及到是否閏年的2月,以及跨年等情況。計(jì)算邏輯復(fù)雜,因此借助moment庫進(jìn)行處理。

import moment from 'moment'; /*** 根據(jù)生日得到年齡* @param {Moment|String|Number|Date|Array} [birth] 生日* @returns {String}*/ function getAgeByBirth(brith) {if (!brith) return '';const duration = moment.duration(moment().diff(brith));const years = duration.years();const months= duration.months();const days= duration.days();let result = '';if (years > 1) {result = years + '歲';} else {if (years === 1) {result = years + '歲' + months + '月';} else if (months > 0) {result = months + '月' + days + '天';} else {result = days + '天';}}return result; }

總結(jié)

以上是生活随笔為你收集整理的年龄计算的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。