変数の分割

refactorgram

let temp = 2 * (height + width);
console.log(temp);
temp = height * width;
console.log(temp);

image/svg+xml

const perimeter = 2 * (height + width);
console.log(perimeter);
const area = height * width;
console.log(area);

エイリアス パラメータへの割り当ての削除、一時的な分割