geo-library
Version:
A Math Module for calculating the Geometry calculations
15 lines (12 loc) • 318 B
JavaScript
class Rectangle {
// Method to calculate perimeter of a rectangle.
static perimeter(length, width) {
return 2 * (length + width);
}
// Method to calculate area of a rectangle
static area(length, breadth) {
return length * breadth;
}
}
// exporting the Rectangle class
module.exports = Rectangle;