摘要: JavaScript的字符串就是用”或”“括起来的字符表示。 js中操作字符串: 1.获得字符串的长度 var s = 'Hello, world!'; s.length; // 132.获取指定字符 s[0]; // 'H' s[6]; // ' ' s[7]; // 'w' s[12]; // 阅读全文
posted @ 2019-05-20 17:39 任飞儿 阅读(1493) 评论(0) 推荐(0) 编辑
摘要: javascript获取指定区间范围随机数 //获取指定区间范围随机数,包括lowerValue和upperValuefunction randomFrom(lowerValue,upperValue){ return Math.floor(Math.random() * (upperValue - 阅读全文
posted @ 2019-05-20 17:34 任飞儿 阅读(772) 评论(0) 推荐(0) 编辑
摘要: 一、Math.trunc() 1.定义 Math.trunc()方法去除数字的小数部分,保留整数部分。 2.语法 3.示例 二、Math.round() 1.定义 Math.round()方法返回一个数字四舍五入后的整数部分。 2.语法 3.示例 三、Math.ceil() 1.定义 Math.ce 阅读全文
posted @ 2019-05-20 17:33 任飞儿 阅读(3288) 评论(1) 推荐(1) 编辑