Here you can find the source of mod(d)
Number.prototype.mod =function(d) { var rem = this%d; return rem < 0? d+rem: rem; };
Number.prototype.mod = function( n ) { return ( ( this % n ) + n ) % n; };
Number.prototype.mod = function(n) { return ((this % n)+ n ) % n;
Number.prototype.mod = function(n) { return ((this%n)+n)%n; var divisors = (num) => { var holder = [] for(var i = 2; i < num; i++){ if(num % i == 0){ holder.push(i) return holder.length != 0 ? holder : num + " is prime" console.log(divisors(13))
Number.prototype.mod = function (n) { return ((this % n) + n) % n;
Number.prototype.mod = function(n) { return ((this%n)+n)%n;