[프로그래머스 | Javascript] 코딩테스트 입문 - 가장 큰 수 찾기

박기영·2022년 11월 9일
0

프로그래머스

목록 보기
82/159
post-custom-banner

solution

function solution(array) {
    let max = array[0];
    
    let ans = null;
    
    array.forEach((item, index) => {
        if(item > max){
            max = item;
            
            ans = [item, index];
        }
    })
    
    return ans;
}

forEach()의 콜백으로 item, index를 적절하게 사용해서 최대값을 갱신해나가며
요구되는 형태로 ans를 만들었다.

profile
나를 믿는 사람들을, 실망시키지 않도록

0개의 댓글