Jump to content

loop a prompt if user push yes


konsav

Recommended Posts

<script>
  class Course {
    constructor(title, stream, type, start_date, end_date) {
      this.title = title;
      this.stream = stream;
      this.type = type;
      this.start_date = start_date;
      this.end_date = end_date;
      }
   }                                                                                                                                                                                                                                                                                        
  let newCourseInstance = new Course(
    window.prompt("Title:"),
    window.prompt("Stream:"),
    window.prompt("Type:"),
    window.prompt("Start date:"),
    window.prompt("End date:")
    );

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...