Nodejs Utililty Methods Radian to Degree Convert

List of utility methods to do Radian to Degree Convert

Description

The list of methods to do Radian to Degree Convert are organized into topic(s).

Method

toDegrees()
Number.prototype.toDegrees = function() { 
    return this.valueOf() * (180 * Math.PI); 
radToDeg()
Number.prototype.radToDeg = function () {
  return this.valueOf() / Math.PI * 180;