posted an update

here is an update on StudentExplorer We’ve just released the first version of Student Explorer! Now you can explore students from colleges across India with glowing, search, filters, and sort options, and clickable pop-ups for full student details. Plus, dynamic stats show total students, colleges, and states instantly. We’re excited to make exploring colleges and peers fun, interactive, and visual!

here is a simple code snippet let filtered = students.filter(s=>{ return (stateFilter.value === '' || s.State === stateFilter.value) && (courseFilter.value === '' || s["Class/Course"] === courseFilter.value) && (genderFilter.value === '' || s.Gender === genderFilter.value) && (searchInput.value === '' || s.Name.toLowerCase().includes(searchInput.value.toLowerCase()) || s.City.toLowerCase().includes(searchInput.value.toLowerCase()) || s["College/School"].toLowerCase().includes(searchInput.value.toLowerCase())); });

Log in or sign up for Devpost to join the conversation.