About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
kiinlam
9/19/2016 - 3:36 AM
share
Share
add_circle_outline
Save
限定一个数只能在某个范围内,不能超出
限定一个数只能在某个范围内,不能超出
astrictNum.js
content_copy
file_download
function astrictNum (num, min, max) { return Math.min(max, Math.max(min, num)); }
clear