+ 1
10 Respostas
+ 3
Sahil Chib ok now I try to resolve it đđ»
+ 3
Sahil Chib i think we must create an convert in number function... đ€If I have the solution I send it to you đ
+ 2
You can try this:
var priceOfBreakfast;
var priceOfLunch;
var priceOfDinner;
//Gather User Input
priceOfBreakfast = prompt ("Enter price Of Breakfast") ;
Breakfast = parseInt ("Breakfast") ;
priceOfLunch = prompt ("Enter price Of Lunch") ;
Lunch = parseInt ("Lunch") ;
priceOfDinner = prompt ("Enter price Of Dinner") ;
Dinner = parseInt("Dinner") ;
var num1 = parseInt(priceOfBreakfast );
var num2 = parseInt(priceOfLunch);
var num3 = parseInt(priceOfDinner);
//Process or compute the result
var totalAmount = num1+num2+num3;
//Output Result
document.write(totalAmount) ;
I hope I helped you đ
Happy coding đ âșïž
+ 2
đ
¶đ
»đ
žđđ
° let me know please
+ 1
đ
¶đ
»đ
žđđ
° its not adding
+ 1
đ
¶đ
»đ
žđđ
° if I add 3+2+3 output is 323
+ 1
đ
¶đ
»đ
žđđ
° please check and let me know what to fix
+ 1
Also, if there is a dollar sign before the price in the prompt, the result would be âNaNâ.
+ 1
What does "Breakfast = parseInt("Breakfast");" do?
+ 1
https://code.sololearn.com/W8Kj7McK4iIe/?ref=app you do not write closing body tag and you write body tag under the head tag see this code and solve it