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