PHP에서 엄청 많이 쓰는 foreach… JS는? JS에서는 map을 쓴다. const arr = [1,2,3]; const pow = arr.map(x => x*x); console.log(pow); [1, 4, 9]