Generation

generate functionWed, 16 Nov 2022

student class that holds student object attributes

function Student(first, last, age) { this.firstName = first; this.lastName = last; this.age = age; } var student1 = new Student("Sarah", "Roberts", 20); var student2 = new Student("Alex", "Jones", 19);

Javascript
Generate More

Questions about programming?Chat with your personal AI assistant