Appearance
function Rect.bottom(rect: Rect): number
Gets the bottom y-coordinate of a rectangle.
Rect.bottom({ left: 10, top: 20, width: 100, height: 50 }); // 70
pipe({ left: 10, top: 20, width: 100, height: 50 }, Rect.bottom()); // 70