JS
challenger
Home
Intermediate JavaScript
objects II
Destructure with rename
Destructure with rename
Destructure
title
from
product
and rename it to
productTitle
in the same expression.
Premium
reset
function greet(name) { return `Hello, ${name}!`; } console.log(greet("Erik"));
JavaScript
Run Code
Console