JS, wie man die lasterreiche Anzahl einer Zahl kennt

getLastDigit = num => + (num + '').slice(-1);
console.log(getLastDigit(12345)) 
moghaazi