// ⚠️ DEMO FILE - Shows dangerous JavaScript patterns
// This file demonstrates security anti-patterns
// 🔴 BAD: Hardcoded secret
const API_KEY = "sk-abcdefgh1234567890xxxxxxxxxxxxxxxxxxxx";
// 🔴 BAD: Logging the secret
console.log;
// 🔴 BAD: Including in debug output
console.;
// Using the secret (this is fine, but the above patterns are dangerous)
// 🔴 BAD: Error logging with secret
try catch