We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc5c3f9 commit 2203163Copy full SHA for 2203163
js/js_dialogs.js
@@ -0,0 +1,8 @@
1
+/*can be use to collect user input*/
2
+var user_name = prompt("What is your name?", "");
3
+
4
+/*can be use to confirm actions*/
5
+var user_confirm = confirm("Do you like Ice cream ?");
6
7
+/*can be use to show messages to user*/
8
+alert("Basic JS Alert");
0 commit comments