分类:js

js

vue 移除 console.log

vue 移除 console.log
npm install uglifyjs-webpack-plugin --save-dev const UglifyJsPlugin = require('uglifyjs-webpack-plugin'); config.plugins.push( ...

yekong 3年前 (2021-11-03) 喜欢

js生成随机数字

js生成随机数字
function GetRandomNum(Min,Max) { var Range = Max - Min; var Rand = Math.random(); return(Min + Math.round(Rand * Range)); } var num = GetRan...

yekong 3年前 (2021-11-03) 喜欢