js基础语法大全(时间戳,uuid,字符串转json)
目录
- 一、获取时间戳
- 二、获取uuid
- 三、字符串转json格式
一、获取时间戳
var times = Math.round(new Date().getTime()/1000).toString(); //获取 10位 时间戳
console.log(times);
二、获取uuid
function guid() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
var r = Math.random() * 16 | 0,
v = c == 'x' ? r : (r & 0x3 | 0x8);
return v.toString(16);
});
}
console.log(guid());
三、字符串转json格式
var string = '{"p":"n","de":"25","ch":"zy"}';
var jsonData = eval('(' + string + ')');
console.log(jsonData);