This commit is contained in:
Onoshko Dan 2014-05-29 18:25:22 +07:00
parent 3822a3a902
commit d6ef6fb207

View File

@ -449,19 +449,19 @@ Future
- destructed function arguments - destructed function arguments
test({String name, String login, String photoUrl}){ test({String name, String login, String photoUrl}){
console.log(name, login, photoUrl); console.log(name, login, photoUrl);
} }
- ES6 `for` - ES6 `for`
for({String name, String login, String photoUrl} in usesr){ for({String name, String login, String photoUrl} in usesr){
} }
for(name of names){ for(name of names){
} }
- asm.js native syntax, for example - asm.js native syntax, for example