Skip to content
Advertisement

Switch Statement, it does not work with prompt

I just learned switch statements. I was practicing it by building something. When i set the value of variable to a number it works but when i asks the user for a number it always outputs the default statement.

It works with this code:

JavaScript

But when i asks value from user, it dosen’t work. Code below doesn’t work:

JavaScript

Advertisement

Answer

You need to convert the user input from a string to an integer, like so

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement