Alexandru Daniel Rosca

Results 1 comments of Alexandru Daniel Rosca

this is my solution ```javascript BigInt.prototype.toJSON = function () { const int = Number.parseInt(this.toString()); return int ?? this.toString(); }; ```