Jump to content

konsav

Members
  • Posts

    1
  • Joined

  • Last visited

konsav's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. <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:") );
×
×
  • Create New...