How can i view terminal output while working on lessons that display HTML content.
For example for the purpose of troubleshooting i would like to put console.log in a few places in my code to see how my code is functioning. This is a project where an HTML web page is displayed on the right, is there a way i can view terminal output in addition to the HTML webpage?
browsers come with built-in console, f12 key usually opens developer tools, then look for console tab
otherwise, looking in settings for dev tools or right click on a website and click and select: inspect (element), this will open the inspector, then you can switch to console tab
if none of those work, you can google how to open dev tools/console for your OS and/or browser.