JS
challenger
Home
JavaScript Basics
asynchronous javascript
Execute the code asynchronously
Execute the code asynchronously
Adjust the code snippet so that the value 0 is logged first and then the value 1.
Premium
reset
function greet(name) { return `Hello, ${name}!`; } console.log(greet("Erik"));
JavaScript
Run Code
Console