每次调用函数返回 1---100之间的整数
function create(){
return parseInt(Math.random() * 100)
}
window.setInterval(function () {
console.log(create());
},2000)
function create(){
return parseInt(Math.random() * 100)
}
window.setInterval(function () {
console.log(create());
},2000)