function obsahuje3e(str){ if((str.match(/e/g) || []).length >= 3){ return true; } }
function obsahuje3e(str){ if((str.split(",")[0].match(/e/g) || []).length >= 3){ return true; } }