摘要:
解构赋值正确使用的形式 1.函数的参数 2.函数的返回值 3.变量交换 4.JSON应用 5.Ajax请求应用 //函数的参数 解构赋值 // const sum = arr =>{ // let result = 0; // for(let i=0; i<arr.length;i++){ // r 阅读全文
摘要:
学习es6里解构赋值的时候JSON应用的时候遇到Unexpected token o in JSON at position 1 这个错误 const json = {"name1":"es","price":"200"} const {name1,price} = JSON.parse(json) 阅读全文