JS
challenger
Home
Intermediate JavaScript
classes
Access Instance Properties
Access Instance Properties
A class
Book
with a constructor is already defined. Create a new
Book
instance with the title
"Dune"
and read its
title
property into the variable
title
.
Premium
reset
function greet(name) { return `Hello, ${name}!`; } console.log(greet("Erik"));
JavaScript
Run Code
Console