scrimba
JS Deep Dive
Classes
Challenge: Your First Constructor Function
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Challenge: Your First Constructor Function
AboutCommentsNotes
Challenge: Your First Constructor Function
Expand for more info
index.js
run
preview
console
// 1. create a new constructor function, Book, which logs books in the school library (id, title, author, themes[]), 
// 2. Add ids, titles and authors for your two favourite books.
// 3. Use the prototype keyword to add a theme property to the books.
// 4. Add at least one theme to each of your books.

// Beginning:

function Book() {
// your code here
}
Console
/index.html
-3:36