Skip to content

Instantly share code, notes, and snippets.

@0407chan
0407chan / classifierAlpha.js
Last active July 3, 2020 04:58
classifierAlpha
let ClassifierAlpha = function (number) {
this.number = number | 0;
};
ClassifierAlpha.prototype.isFactor = function (potentialFactor) {
return this.number % potentialFactor === 0;
};
ClassifierAlpha.prototype.factors = function () {
let factorSet = [];