Hi

Array.forEach() 본문

WEB(웹)/javascript

Array.forEach()

SharingWorld 2018. 7. 29. 16:28

var Users = [{name: '소녀시대', age: 20}, ....];


Users.forEach(function(item, index) {

console.log('배열 요소 #' + index + ' : %s', item.name);

});

'WEB(웹) > javascript' 카테고리의 다른 글

slice() 메소드  (0) 2018.07.29
splice()  (0) 2018.07.29
CommonJs  (0) 2018.07.29
module pattern  (0) 2018.07.25
namespace pattern  (0) 2018.07.25