摘要: foreach ... 阅读全文
posted @ 2018-07-21 17:43 Sunsin 阅读(1460) 评论(0) 推荐(0) 编辑
摘要: es6新的字符串,操作... 具体,请查看es6 api. 阅读全文
posted @ 2018-07-21 17:10 Sunsin 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 注意:es6模板的内容框选是``键盘左上角的重音符 ,而es5是双引号或单引号. 阅读全文
posted @ 2018-07-21 13:25 Sunsin 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 1 class User { 2 constructor(name, age) { 3 this.name = name; 4 this.age = age; 5 } 6 7 changeName(name) { 8 this.name = name; 9 } 10 11 changeA... 阅读全文
posted @ 2018-07-21 13:12 Sunsin 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 今天用node纠结了半天,明明是正确的语法,一直报错,原来node和chrome并不支持es6语法.... 1. npm install package.json 1 { 2 "name": "ES6", 3 "version": "1.0.0", 4 "description": "", 5 "m 阅读全文
posted @ 2018-07-21 10:53 Sunsin 阅读(2345) 评论(0) 推荐(0) 编辑