JavaScript Basics Notes
1. Variables can be declared using var, let, or const.
2. Functions can be defined using function keyword or arrow functions.
3. Arrays are declared as let arr = [1,2,3];
4. Objects store key-value pairs: let obj = {name: 'John', age: 25};
5. DOM manipulation: [Link]('#id').textContent = 'Hello';