var kidsWithCandies = function(candies, extraCandies) {
const max = Math.max(...candies);
return candies.map(e => e + extraCandies >= max);
};
Math.max()
를 이용해서 최대 캔디 개수를 얻는다.
그리고 map 메소드를 이용해서 기존 캔디 개수와extraCandies
를 더했을때max
보다 같거나 큰 지를 판별하면된다.