/*This loop does not iterate at all, because its condition is false to
start with.*/
for (let i = 0; i < -1; i++) {
console.log("LaunchCode");
}
for (int j = len-2;j >= 0;j--){
carry = (digits[j]+carry)/10 ;
digits[j] =(digits[j]+carry)%10 ;
}