Skip to content

Instantly share code, notes, and snippets.

View ABDorian's full-sized avatar

JustAJ ABDorian

  • India
  • 18:36 (UTC +05:30)
View GitHub Profile
var ll = function (t) {
var e = "";
for (var n = 0; n < t.length; n++) {
var r = t.charCodeAt(n);
if (r >= 48 && r <= 57) {
e += t[n];
}
}
return e;
};