Number.prototype.toStrings = function () {
return x = `${this}` // ES6 string
};
Boolean.prototype.toStrings = function () {
return x = `${this}` // ES6 string
};
Array.prototype.toStrings = function () {
return x = `[${this}]` // ES6 string
};
Boolean.prototype.toString = function () {
return this ? 'true' : 'false';
};