Add isBeforeDate, isAfterDate, isSameDate
This commit is contained in:
@ -5,7 +5,7 @@ Converts an angle from radians to degrees.
|
||||
Use `Math.PI` and the radian to degree formula to convert the angle from radians to degrees.
|
||||
|
||||
```js
|
||||
const radsToDegrees = rad => (rad * 180.0) / Math.PI;
|
||||
const radsToDegrees = rad => rad * 180.0 / Math.PI;
|
||||
```
|
||||
|
||||
```js
|
||||
|
||||
Reference in New Issue
Block a user