Editor Arrow Download Open
<!DOCTYPE html> <html lang="en"> <head> <title>JavaScript Pop-up box Introduction</title> </head> <body> <script> var name = prompt('Enter your name','name'); alert('Hello, ' + name); confirm('Are you sure?'); </script> </body> </html>
  Preview Arrow