gpt4 book ai didi

javascript - 欧洲编号中的星期几

转载 作者:行者123 更新时间:2023-11-28 18:49:27 25 4
gpt4 key购买 nike

该函数工作正常。

function getLocalDay(date) {
return (date.getDay() == 0) ? 7 : date.getDay();
}

alert( getLocalDay( new Date(2016, 0, 10) ) ); // 7

如果我编辑条件date.getDay() ? 7:date.getDay() - 函数无法正常工作。如果星期几是星期日,该函数应返回 7。

最佳答案

当然!如果你想缩短你的方法,你必须写:

return !date.getDay() ? 7 : date.getDay();

您忘记了!

您还可以编写date.getDay() || 7 正如@Akxe 在评论中所写。

关于javascript - 欧洲编号中的星期几,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34722234/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com