Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Purpose of 'Start program' console.log statement

If the console doesn't display anything until after the execution of the entire script, what's the point of writing a console.log statement at the beginning of the script? Is it to check that everything between the 'start' and 'end' log statements was executed?

1 Answer

Steven Parker
Steven Parker
229,708 Points

You didn't mention any specific course or video, but browser functionality has changed in the last few years and it could be that at the time it was made the log message would be rendered immediately.

You can get an immediate output with the "alert" function, but the program will pause until you dismiss the dialog.