function App(){ const numbers = [4, 9, 46, 25]; function multiply(num){ return (num*10).toFixed(3); //소수 3째자리까지 표시시 } console.log('aa'); const result01 = numbers.map(multiply); //4개의 원소들을 확장for 같이 하나하나 연산하여 리턴 받음. console.log(result01); const twotimes = (n) => 2*n; const result02 = numbers.map(twotimes); console.log(result02); const rootValue = numbers.map(Ma..