Last active
January 13, 2017 01:18
-
-
Save dstyle0210/dafac7fa7b199742e45c67ed0aad5ff1 to your computer and use it in GitHub Desktop.
[es6] for .. of 기본 사용법
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var data = [{name:"won","age:"35},{name:"seo",age:"39"},{name:"kim",age:"42"}]; | |
| for(human of data){ | |
| console.log( human.name ); // won , seo , kim | |
| }; | |
| // 참고 (for 기본구문) | |
| for(var i=0;i<data.length;i++){ | |
| console.log( data[i].name ); // won , seo , kim | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment