가장 큰수

boyeonJ·2023년 5월 7일
0

알고리즘

목록 보기
8/17
post-thumbnail

문제링크

startsWith join

function solution(numbers) {
    const answer = numbers.map(number => number.toString()).sort((a,b) => (b+a) - (a+b)).join('');
    
    return answer.startsWith('0') ? '0' : answer;
}

startsWith

const str = 'Hello, world!';
console.log(str.startsWith('Hello')); // true
console.log(str.startsWith('hello')); // false


const str = 'Hello, world!';
console.log(str.startsWith('world', 7)); // true
console.log(str.startsWith('world', 8)); // false

0개의 댓글