//ex1)
const test = function(callback) {
callback()
}
const test2 = function() {
console.log('Hi~')
}
test(test2) //출력 -> 'Hi~'
//ex2)
const test = function(callback){
for(let i=0; i<5; i++){
callback(i)
}
}
const test2 = function(callback){
console.log(`${callback}번째 안녕하세요`)
}
test(test2)
//출력
'0번째 안녕하세요'
'1번째 안녕하세요'
'2번째 안녕하세요'
'3번째 안녕하세요'
'4번째 안녕하세요'