JS
challenger
Home
JavaScript Basics
scope
Make use of function scope to return correct value.
Make use of function scope to return correct value.
Use what you have learned about
Function Scope
to make the function
multiply
return the value 50.
Premium
reset
function greet(name) { return `Hello, ${name}!`; } console.log(greet("Erik"));
JavaScript
Run Code
Console