摘要: 关键字规则 变量定义使用 # 作者:咸瑜 # 代码时间:2022/10/17 15:57 name = "咸瑜" print('值', name) print('id', id(name)) print('类型', type(name)) # # 值 咸瑜 # id 2245130370480 # 阅读全文
posted @ 2022-10-18 18:50 咸瑜 阅读(23) 评论(0) 推荐(0)
摘要: export function getWeek(date1, date2) { let d1 = new Date(date1); let d2 = new Date(date2); console.log(Math.ceil(parseInt(((d2 - d1) / (1000 * 3600 * 阅读全文
posted @ 2022-10-18 14:59 咸瑜 阅读(51) 评论(0) 推荐(0)