WEB818
9/17/2019 - 5:46 PM

compute area of a rectangle

compute area of a rectangle

function computeArea(width, height) {
  return width * height;
}