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