1. 오늘 공부한 내용 📝 ES6 복습 Object Shorthand function getName(first, last) { let fullName = first + " " + last return { first : first, last: last, fullName: fullName } } function getName(first, last) { let fullName = first + " " + last return { first, last, fullName } } Array Destructuring const arr = [1, 2, 3, 4, 5]; const [a, , , b] = arr; const [, , , , , c] = arr; const [, , , , , d=10] = arr; con..