foreach: 루프변수 없이 사용가능.
정의한 콜백 함수 재사용 가능.
let number= [1, 2, 3, 4, 5]; number.foreach(show_number); function show_number(num) { console.log(num); }
- 함수 인자 활용.
function show_number(num, i) { console.log(i + " - " + num); }
function show_number(num, i , array) { console.log(array); }