Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as JavaScript by Stefan ( 6 years ago )
function solve (start, end) {
let startNumb = Number(start);
let endNumb = Number(end);
let outputString = "" + start;
let cycleEnd = endNumb - startNumb;
for(let i = 1; i <= cycleEnd; i++) {
outputString += startNumb + i;
}
console.log(outputString);
}
Revise this Paste