Skip to content

Instantly share code, notes, and snippets.

@blaurt
Created April 21, 2020 05:58
Show Gist options
  • Save blaurt/34e5b53a85744d488b52ea95b338805b to your computer and use it in GitHub Desktop.
Save blaurt/34e5b53a85744d488b52ea95b338805b to your computer and use it in GitHub Desktop.
degreesToRadians.js
/**
* @param {number} degrees
*/
function degreesToRadians(degrees) {
return (degrees * Math.PI) / 180;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment