parseInt 를 사용한 소수점 버림
console.log(parseInt(223.32)); // 223
string 의 "repeat"
console.log('*'.repeat(3)); // ***
Array 의 reduce 중간의 try-catch 의 throw 활용
const arr = [1, 2, 3, 4];
try {
const result = arr.reduce((acc, cur) => {
if (cur === 2) {
throw cur;
}
}, 1);
answer = result;
} catch (mid_result) {
answer = mid_result;
}
return answer;
BigInt 와 n 의 사용
// BigInt 유형을 사용하여 n을 9로 나눈 나머지를 반환
function solution(n) {
return BigInt(n) % 9n;
}