+6
I do a little program in Javascript. I wanted to do a prompt wich ask if yes or not restart the prog. how can I do ? Thanks :)
7/27/2017 6:57:44 PM
2 Answers
+10
var restart = confirm("Restart the game?"); if (restart) doSomething; else doNothing;
+7
thanks !
Send us a message