Project 20: Pricing Table
JS Wizard
Builds on these lessons
Step 1 of 3
Project
Synchronous vs. Asynchronous
Log "Start", schedule a setTimeout logging "Plan loaded" after 1000ms, then immediately log "End". Watch the order: Start, End, Plan loaded — setTimeout doesn't pause the script; it schedules that callback to run later, after everything synchronous has already finished.
🎯 Your Task
Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!
console.log("Start");
setTimeout(function () {
console.log("Plan loaded");
}, 1000);
console.log("End");