JS bagaimana mengetahui jumlah laster dari angka

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