JS
challenger
Home
JavaScript Basics
asynchronous javascript
Use a callback function to log output
Use a callback function to log output
Use the multiply function as a callback function within getValue so that the final value of b is 10.
Premium
reset
function greet(name) { return `Hello, ${name}!`; } console.log(greet("Erik"));
JavaScript
Run Code
Console