随机函数与JSON

Posted carol72

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随机函数与JSON相关的知识,希望对你有一定的参考价值。

1.随机函数

//随机函数
//Math.round() 四舍五入
Math.round(Math.random());//区0-1之间的整数即0或1
//0~10之间的整数
Math.round( Math.random()*10);
//5~10之间的整数
Math.round( Math.random()*5+5);
//20~100之间的整数
Math.round( Math.random()*80+20);
//x~y之间的整数
Math.round( Math.random()*(y-x)+x);
//0~x之间的整数
Math.round( Math.random()*x);
//1~x
Math.ceil( Math.random()*x);

2.JSON

var json={"name":"leo","age":24};
json.name;//leo
json["nume"];//leo

var imgData={
	imgUrl:["img/1.png","img/2.png","img/3.png","img/4.png"],
	txt:["图片一","图片二","图片三","图片四"]
}
imgData.imgUrl[0];//img/1.png

//json遍历
var json1={‘name‘:‘carol‘,‘age‘:18,‘fun‘:‘moile‘};
for (var attr1 in json1) {
//	alert(attr1);
	alert(json1[attr1]);
}

  

以上是关于随机函数与JSON的主要内容,如果未能解决你的问题,请参考以下文章

解决未能加载文件或程序集“Newtonsoft.Json ...."或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040)(代码片段

播放随机声音而不重复

json 个人的vscode的代码片段

实用代码片段将json数据绑定到html元素 (转)

json 可视代码工作室Angular with Firebase片段

vs code 用户代码片段 html.json