1. var base = 6;
  2. var height = 5;
  3. var area = base * height;
  4. console.log("The area of rectangle is:", area);