const getRectArea = function(width, height) {
  return width * height;
};

console.log(getRectArea(3, 4));
// Очікуваний вивід: 12