Javascript Number gcd(b)

Description

Javascript Number gcd(b)


Number.prototype.gcd = function(b) {
  return (b == 0) ? this : this.gcd(this % b);
}

String.prototype.toAspectRatio = function() {
  var p = this.split(':');
  if (p.length != 2) {
    return undefined;
  } else {/* w  w  w.j ava2s  . c o  m*/
    return {
      x: parseInt(p[0]),
      y: parseInt(p[1])
    };
  }
}



PreviousNext

Related