fork download
  1. function lastDigit(n) {
  2. return Math.abs(n) % 10;
  3. }
  4.  
  5. // Пример использования:
  6. console.log(lastDigit(123)); // 3
  7. console.log(lastDigit(-456)); // 6
  8. console.log(lastDigit(7)); // 7
Success #stdin #stdout 0.03s 16740KB
stdin
Standard input is empty
stdout
3
6
7