var getRectArea = function(width, height) { return width * height; } console.log(getRectArea(3,4)); // expected output: 12