I have perused Stack Overflow and other sites but cannot seem to find my specific problem I have all levels checked off- verbose, info, warnings, errors
There is nothing in the filter section yet I still cannot get any output from console.log. It was working fine until yesterday I must have done something I'm new I don't know what the hell I'm doing I suppose but I'm frustrated I've been two days trying to figure out what this is.
I've included a screenshot, if that helps: console.log problem
It is not a VSCode problem. You are opening the script1.js file directly from the browser.
Make an HTML file in the same directory as your script1.js file
Put the following code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
<script src="script1.js"></script>
</html>
Then execute the HTML file in the browser, then the JS code will execute.