Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 310 Bytes

File metadata and controls

14 lines (10 loc) · 310 Bytes

Screen Shot 2022-08-12 at 23 59 27

function digitalRoot(n) {
  // ...
  while(n > 9) {
    n = n.toString().split("").reduce((a, b) => +a + +b);
  }
  return n;
}