摘要:大胖骚胖大胖骚胖用来将字符串转成对象的反序列化打印出用来将对象转成字符串的序列化打印出大胖骚胖打印出打印出正则打印出打印出打印出打印出打印出打印出打印出打印出
es5_JSON
</>复制代码
let str = "[{"name":"大胖","age":23},{"name":"骚胖","age":24}]";
let arr = [
{"name":"大胖","age":23},
{"name":"骚胖","age":24}
];
用来将json字符串转成json对象(json的反序列化):
</>复制代码
let jsonObj = JSON.parse(str);
console.log(jsonObj);//打印出[Object, Object]
用来将json对象转成json字符串(json的序列化):
</>复制代码
let jsonStr = JSON.stringify(arr);
console.log(jsonStr);//打印出[{"name":"大胖","age":23},{"name":"骚胖","age":24}]
String trim:
</>复制代码
let str5 = " abc";
console.log("|"+str5+"|");//打印出| abc|
console.log("|"+str5.trim()+"|");//打印出|abc|
正则:
</>复制代码
let reg = /^(s+)|(s+)$/g;
console.log("|"+str5.replace(reg,"")+"|");//打印出|abc|
Date:
</>复制代码
console.log(Date.now());//打印出1500706861909
console.log(new Date().toJSON());//打印出2017-07-22T07:01:01.909Z
console.log(new Date().toISOString().slice(0,10));//打印出2017-07-22
Number:
</>复制代码
let a = new Number(1.326);
let b = new Number(1.324);
console.log(a.toFixed(2));//打印出1.33
console.log(b.toFixed(2));//打印出1.32
let c = 10000000000000;
console.log(c.toPrecision(4));//打印出1.000e+13
console.log(Math.round(12.34));//打印出12
function call apply:
</>复制代码
var x = 1;
let obj5 = {
x:2
}
function fn1(a,b){
console.log(this.x);
}
fn1();
let fn2 = fn1.bind(obj5);
fn2();
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/84237.html
阅读 2461·2021-09-30 09:47
阅读 3029·2019-08-30 11:05
阅读 2628·2019-08-29 17:20
阅读 2004·2019-08-29 13:01
阅读 1803·2019-08-26 13:39
阅读 1412·2019-08-26 13:26
阅读 3298·2019-08-23 18:40
阅读 1955·2019-08-23 17:09