const hi = () => { console.log('hi');}const dog = (action) => { console.log('bork');};const hoomen = (action) => { console.log('homen says '); action();};dog(hi);hoomen(hi);근데 이게 뭔가요
댓글 0