// Test file for SonarQube analysis function greet(name) { if (name == null) { // Bug: should use === for strict comparison return "Hello, World!"; } return "Hello, " + name + "!"; } // Code smell: unused variable var unusedVar = 42; // Security hotspot: hardcoded password const password = "admin123"; console.log(greet("SonarQube")); // Trigger build Sat Jan 3 20:22:22 UTC 2026 // Test 1767472275