从JavaScript中获得世纪
我们需要编写一个JavaScript函数,该函数接受一个代表年份的数字或字符串。从那一年起,我们的职能应该弄清楚并返回这一年的世纪。
例如-
f("2000") = 20
f(1999) = 20
f("2002") = 21以下是代码-
示例
const centuryFromYear = year => {
if(typeof year == 'string'){
if(year.toString().slice(-2) == '00'){
return year.toString().slice(0,2);
}else{
return (Math.floor(+year/100) +1).toString();
};
}else if(typeof year == 'number'){
return Math.floor((year-1)/100) + 1;
}else{
return undefined;
};
};
console.log(centuryFromYear("2000"));
console.log(centuryFromYear("2002"));
console.log(centuryFromYear(1999));输出结果
以下是控制台上的输出-
20 21 20
热门推荐
10 英文简短唯美祝福语大全
11 别人结婚舞台祝福语简短
12 道教生日祝福语简短大全
13 结婚祝福语亲姐姐简短
14 新年留言老师祝福语简短
15 迎新祝福语简短20字
16 新年祝福语简短创意兄弟
17 中考祝福语简短高级句
18 毕业祝福语简短给同学