# Day 1: Arithmetic Operators

### Problem Link <a href="#problem" id="problem"></a>

* [x] [**HackerRank Problem Link**](https://www.hackerrank.com/challenges/js10-arithmetic-operators/problem)

### Solution

* [x] **JS Solution**

{% code title="arithOperators.js" %}

```javascript
function getArea(length, width) {
  let area;
  area = length * width;
  return area;
}

function getPerimeter(length, width) {
  let perimeter;
  perimeter = 2 * (length + width);
  return perimeter;
}
```

{% endcode %}
