All Strings Tracker revised

Choose a function to begin with.... then input a string

Code Example...

//this will padstart the input

function padAtStart(string) {

const len = string.length + 7;
return string.padStart(len, 'x');

}

Answer for the code...

xxxxxxx288