浮点数加减乘除运算
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108const operationObj = { /** * 处理传入的参数,不管传入的是数组还是以逗号分隔的参数都处理为数组 * @param args * @returns {*} */ getParams(args) { return Array.prototype.concat.apply([], args); }, /** * 获取每个数的乘数因子,根据小数位数计算 * 1.首先判断是否有小数点,如果没有,则返回1; * 2.有小数点时,将小数位数的长度作为Math ...
Introduce Page
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment