В ответ на пост
Продолжим странным вариантом
function drob(string) {
return string.split('')
.filter((f, i) => string.length - 4 < i)
.join('')
};