开箱即用版 function sectionRandom (start, end) { let nums = end – start + 1 return Math.floor(Math.random() * nums + start) } sectionRandom(1, 5) sectionRandom(2, 8)……
来自分类:javascript / 前端
开箱即用版 function sectionRandom (start, end) { let nums = end – start + 1 return Math.floor(Math.random() * nums + start) } sectionRandom(1, 5) sectionRandom(2, 8)……
防抖函数 function debounce (func, delay = 200) { let timer = null return (…params) => { timer && clearTimeout(timer) timer = setTimeout(() => func(.……
版权所有 © 2022 cinob的博客 | 辽ICP备17021658号-2
Theme Memory By Shawn With | All Rights Reserved
(●'◡'●)ノ本博客已萌萌哒运行了