Nodejs Radian to Degree Convert radToDeg(angle)

Here you can find the source of radToDeg(angle)

Method Source Code

function radToDeg(angle) {
   return ((angle * 180) / Math.PI);
}

Related

  1. rad2Deg(rad)
    Math.rad2Deg = function(rad)
      return (rad / Math.PI) * 180;
    
  2. radToDeg(rad)
    function radToDeg(rad) {
      return rad / Math.PI * 180;
    
  3. toDegrees(radians)
    Math.toDegrees = function(radians) {
      return radians * 180 / Math.PI;
    };
    
  4. toDeg()
    Number.prototype.toDeg = function() {
      return this * 180 / Math.PI;
    Number.prototype.toRad = function() {
      return this * Math.PI / 180;
    
  5. toDeg()
    Number.prototype.toDeg = function() {
       return this * 180 / Math.PI;