09.데이터 조직화
변수 쪼개기
let temp = 2 * (height + width);
console.log(temp);
temp = height + width;
console.log(temp);const perimeter = 2 * (height + width);
console.log(perimeter);
const area = height * width;
console.log(area);필드 이름 바꾸기
파생 변수를 질의 함수로 바꾸기
참조를 값으로 바꾸기
값을 참조로 바꾸기
매직 리터럴 바꾸기
Last updated