21 03 회고 - ChoDragon9/posts GitHub Wiki

리팩터링 패턴 하나 찾은 것

const a = 1;
const b = 2;
const c = Math.max(a, b); // a > b ? a : b
console.log(c);