• + 0 comments
    const getArea = (length, width) => length * width;
    
    const getPerimeter = (length, width) => 2*(length+width);