The Math.max() static method returns the largest of the numbers given as input parameters, or -Infinity. If there are no parameters.
The spread syntax is a shorter way of writing the apply solution to get the maximum of an array:
Math.max() 함수는 하나의 인자로서 배열을 받지 않는다.
그래서
위와 같은 형태는 잘 못 되었다.
그래서
배열의 최대값을 구하고자 할 때는, 스프레드 연산자를 separate 인자로 배열 요소를 전달하는 데 사용하거나, apply() method를 활용한다.
아래의 예처럼,