JavaScript Syntax
<!DOCTYPE html> <html> <body> <h2>Values, Variables, and Keywords</h2> <script> // Literals: fixed values written directly in code 42; "a piece of text"; // Variables hold values you can reuse let score = 10; const pi = 3.14159; // Operators combine values let doubled = score * 2; </script> </body> </html>