Hi everyone, I'm new to JavaScript. Any resources you can recommend for beginners?
JavaScript Basics - Getting Started
2023-10-27 10:00 AM
2023-10-27 10:30 AM
Check out MDN Web Docs - it's a fantastic resource: https://developer.mozilla.org/en-US/docs/Web/JavaScript
2023-10-27 11:00 AM
Also, FreeCodeCamp has great interactive tutorials: https://www.freecodecamp.org/
DOM Manipulation
2023-10-27 12:00 PM
I'm struggling with selecting elements using the DOM. Any tips?
2023-10-27 12:30 PM
Use `document.getElementById()` or `document.querySelector()` - they're your friends!