+ 1
10 Answers
+ 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