function f(x,y) {
const splittedX = x.split(".");
if (splittedX.length > 3) return false;
if (x.endsWith(y)) return true;
}
function f(x,y) {
const splittedX = x.split(".");
if (splittedX.length > 3) return false;
if (x.endsWith(y)) return true;
}
No replies yet.