Consider a rectangle whose left edge is at min_x, right edge is at max_x, lower edge is at min_y, and upper edge is at max_y. Return true if the point at x,y is in the rectangle. Otherwise return false.

javascript programming
exercise: mixed expressions 03