Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialTom Dringer
Courses Plus Student 1,418 PointsMy questions are both strings and numbers.
Hi,
My questions array, I have both strings and numbers as answers:
var questions = [ ['Whats the capital of England?','LONDON'], ['How many days in a week?',7], ['Where is Michael Schumacher from?','GERMANY'], ['Capital of Japan?','TOKYO'] ];
I have my response var as
response = parseInt(prompt(question).toUpperCase());
The parseInt deals with the numbers, and the toUpperCase puts it in to uppercase, not surprisingly. Do I need to do an if statement if response is a string or number?
Thanks
1 Answer
Edwin Carbajal
4,133 PointsHi Tom,
In this case, if you are not going to do a mathematical operation with the users response than it is okay to leave out the parseInt(). Wrapping the prompt() with a parseInt will return a 'NaN'.
Tom Dringer
Courses Plus Student 1,418 PointsTom Dringer
Courses Plus Student 1,418 PointsThanks!