IS
Size: a a a
IS
VL
IS
IS
Number.prototype[Symbol.iterator] = function*() {
let tmp = this;
while (tmp > 0) {
yield tmp % 10;
tmp = Math.trunc(tmp / 10);
}
};
console.log([...225].includes(5));
VL
IS
IS
MW
DF
MW
DF
DF
DF
DF
DF
{
MW
{