anyone can help me with this code, please? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

anyone can help me with this code, please?

//once it gets in the loop, it never stops running no matter what number i enter, even if it's the right number let yourNumber = parseInt(prompt("Enter your number")); while (!yourNumber) ( yourNumber = parseInt(prompt("Enter a valid number")) ) const finalNumber = Math.floor(Math.random() + yourNumber * 2); console.log (finalNumber) let game = parseInt(prompt("Enter your first guess")); while (game !== finalNumber) { if (game > finalNumber) { guess = parseInt(prompt("too high, put a new guess")); } else { guess = parseInt(prompt("too low, put a new guess")) } } console.log ("that is correct!")

13th Nov 2023, 9:28 AM
Maroua El Hattach
Maroua El Hattach - avatar
3 Answers
+ 6
Why do you copy-paste the code into the description? Simply LINK your code.
13th Nov 2023, 9:36 AM
Lisa
Lisa - avatar
+ 2
Debug: let yourNumber = parseInt(prompt("Enter your number")); /* BUG while (!yourNumber) ( // bug, bug yourNumber = parseInt(prompt("Enter a valid number")) ) // bug */ const finalNumber = Math.floor(Math.random() + yourNumber * 2); console.log (finalNumber) let guess = parseInt(prompt("Enter your first guess")); //debug 2 while (guess !== finalNumber) { //debug 3 if (guess > finalNumber) { //debug 4 guess = parseInt(prompt("too high, put a new guess")); } else { guess = parseInt(prompt("too low, put a new guess")) } } console.log ("that is correct!")
13th Nov 2023, 10:17 AM
Solo
Solo - avatar
0
i'm using the website version, and still can't figure out where some features exist
13th Nov 2023, 9:40 AM
Maroua El Hattach
Maroua El Hattach - avatar