0
Can anyone help trouble shoot my problem
so im trying to do a simple user input name saving if statement and the app is telling me im missing a ) in line 7 at the end of my code and im like where is the problem cuz my code looks fine too me var user= prompt("Please provide name for your charater"); var cfm= confirm("Do want to use this name?"); if (cfm==true) { alert('Ok '+user ' is now your charater name') /* this is line 7 btw */ }
2 odpowiedzi
+ 10
Add a plus (+) sign after 'user' in alert. After fixing ~
alert('Ok '+user + ' is now your charater name')
+ 1
wow thx how did i not see that i know better lol thx again