替换魔法字面量

refactorgram

function potentialEnergy(mass, height) {
  return mass * 9.81 * height;
}

image/svg+xml

const STANDARD_GRAVITY = 9.81;
function potentialEnergy(mass, height) {
  return mass * STANDARD_GRAVITY * height;
}

别名 用符号常量替换魔法数字