I have a program that must take in input any number, and it can begin with 0, for example:
const nb1=043
const nb2=134
function multiply(nb1,nb2){
const result=nb1*nb2;
console.log(" nb1 and nb2 "+result, nb1, nb2);
}
The problem in the output 043 was raplced by 35
nb1 and nb2 4690 35 134