Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions async.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ function testMe() {
/* CHALLENGE 2 */

function delayedGreet() {
// ADD CODE HERE
}
console.log("welcome")
}

setTimeout(delayedGreet, 3000)
// Uncomment the following line to check your work!
// delayedGreet(); // should log (after 3 seconds): welcome

Expand Down