JS
challenger
Home
JavaScript Basics
objects
Get value from object
Get value from object
The
animal
object has a property
lifespan
. Assign the value of this property to the variable
lifespan
.
Premium
reset
function greet(name) { return `Hello, ${name}!`; } console.log(greet("Erik"));
JavaScript
Run Code
Console