You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constvalues=[20,10,30,50,40]console.log(20,10,30,50,40)console.log(...values)console.log(Math.max(20,10,30,50,40))console.log(Math.max.apply(null,values))// apply 의 2번째 인자는 [] 배열이므로, 이렇게 활용console.log(Math.max(...values))