+ 1
10 Réponses
+ 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