问题
如题所示
相关源码:
function s() {
return "rgb(" + ~~(255 * Math.random()) + ","
+ ~~(255 * Math.random())
+ "," + ~~(255 * Math.random()) + ")"
}
答案
这个函数就是在生成随机的颜色值。
原创文章,作者:wure,如若转载,请注明出处:https://blog.ytso.com/273766.html