Skip to content

Instantly share code, notes, and snippets.

View televators's full-sized avatar

Justin Higgs televators

  • Tallahassee, Florida, USA
View GitHub Profile
class Book {
constructor( title, author, isbn ) {
this.title = title;
this.author = author;
this.isbn = isbn;
}
}
class UI {
addBookToList( book ) {