16位随机数

var str = '';
var timestamp = Date.parse(new Date());
for (var i = 0; i < 3; i++) {
str += Math.floor(Math.random() * 10)
}
var a = timestamp + str+'c'
原文地址:https://www.cnblogs.com/dianzan/p/8705824.html