🏠 Beranda
Benchmark
📊 Semua Benchmark 🦖 Dinosaurus v1 🦖 Dinosaurus v2 ✅ Aplikasi To-Do List 🎨 Halaman Bebas Kreatif 🎯 FSACB - Showcase Utama 🌍 Benchmark Terjemahan
Model
🏆 Top 10 Model 🆓 Model Gratis 📋 Semua Model ⚙️ Kilo Code
Sumber Daya
💬 Perpustakaan Prompt 📖 Glosarium AI 🔗 Tautan Berguna
advanced

Identify and Fix Code Bug

#debugging #javascript #problem-solving

Analyze a JavaScript snippet to find syntax or logical errors.

Analyze the following JavaScript code snippet intended to filter out even numbers from an array. Identify why it is not working as expected, explain the error, and provide the corrected code. Code: const nums = [1, 2, 3, 4, 5]; const evens = nums.filter(x => x % 2 == 1);