GeekEast / blog_comment

0 stars 0 forks source link

Next Generation JavaScript | 雪中印 #2

Open GeekEast opened 5 years ago

GeekEast commented 5 years ago

https://geekeast.github.io/es6.html

Variables 123var: 可以重复命名,全局作用域let: 可变,块级作用域,不能重复命名const: 不可变 Functions 123function myFunc() {}// ES6const myFunc = (parameters) => {}