Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function accum(s) {
- const mumbling = s.split('').map((letter,idx)=>{
- return `${letter.toUpperCase()}${letter.toLowerCase().repeat(idx)}`;
- });
- return mumbling.join('-');
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement