0
点赞
收藏
分享

微信扫一扫

JS常用函数

烟中雯城 2022-08-03 阅读 69


const _max = Math.max.bind(Math);
const _min = Math.min.bind(Math);
const _pow = Math.pow.bind(Math);
const _floor = Math.floor.bind(Math);
const _round = Math.round.bind(Math);
const _ceil = Math.ceil.bind(Math);
const log = console.log.bind(console);


举报

相关推荐

0 条评论