[JS] forEach 문

동민·2022년 2월 9일
0
var array = [1,2,3];

array.forEach(function(element){
  console.log(element);
});

// 1 2 3
profile
BE Developer

0개의 댓글