标签:
js 中的算术运算
1 Math.pow(2,53) // => 9007199254740992: 2 的 53次幂 2 Math.round(.6) // => 1.0: 四舍五入 3 Math.ceil(.6) // => 1.0: 向上求整 4 Math.floor(.6) // => 0.0: 向下求整 5 Math.abs(-5) // => 5: 求绝对值 6 Math.max(x,y,z) // 返回最大值 7 Math.min(x,y,z) // 返回最小值 8 Math.random() // 生成一个大于等于0小于1.0的伪随机数 9 Math.PI // π: 圆周率 10 Math.E // e: 自然对数的底数 11 Math.sqrt(3) // 3的平方根 12 Math.pow(3, 1/3) // 3的立方根 13 Math.sin(0) // 三角函数: 还有Math.cos, Math.atan等 14 Math.log(10) // 10的自然对数 15 Math.log(100)/Math.LN10 // 以10为底100的对数 16 Math.log(512)/Math.LN2 // 以2为底512的对数 17 Math.exp(3) // e的三次幂
js 日期和时间
1 var then = new Date(2011, 0, 1); // 2011年1月1日 2 var later = new Date(2011, 0, 1, 17, 10, 30);// 同一天, 当地时间5:10:30pm, 3 var now = new Date(); // 当前日期和时间 4 var elapsed = now - then; // 日期减法:计算时间间隔的毫秒数 5 later.getFullYear() // => 2011 6 later.getMonth() // => 0: 从0开始计数的月份 7 later.getDate() // => 1: 从1开始计数的天数 8 later.getDay() // => 5: 得到星期几, 0代表星期日,5代表星期一 9 later.getHours() // => 当地时间17: 5pm 10 later.getUTCHours() // 使用UTC表示小时的时间,基于时区
js 字符串处理
1 var s = "hello, world" // 定义一个字符串 2 s.charAt(0) // => "h": 第一个字符 3 s.charAt(s.length-1) // => "d": 最后一个字符 4 s.substring(1,4) // => "ell":第2~4个字符 5 s.slice(1,4) // => "ell": 同上 6 s.slice(-3) // => "rld": 最后三个字符 7 s.indexOf("l") // => 2: 字符l首次出现的位置 8 s.lastIndexOf("l") // => 10:字符l最后一次出现的位置 9 s.indexOf("l", 3) // => 3:在位置3及之后首次出现字符l的位置 10 s.split(", ") // => ["hello", "world"] 分割成子串 11 s.replace("h", "H") // => "Hello, world": 全文字符替换 12 s.toUpperCase()
标签:
原文地址:http://www.cnblogs.com/lman/p/4662189.html