Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 340 Bytes

File metadata and controls

12 lines (10 loc) · 340 Bytes

Screen Shot 2022-06-29 at 22 18 10

const accum = (s) => {
  return s
    .split("")
    .map((c, i) => c.toUpperCase() + c.toLowerCase().repeat(i))
    .join("-");
};

console.log(accum("abcd"));