function get_even_count(i) { var count = 0; i.toString().split('').map(function(v){ v%2 == 0 ? count++: false }); return count; } alert(get_even_count(1024));