(function(){constform=document.querySelector('#sectionForm');constcheckboxes=form.querySelectorAll('input[type=checkbox]');constcheckboxLength=checkboxes.length;constfirstCheckbox=checkboxLength>0?checkboxes[0]:null;functioninit(){if(firstCheckbox){for(leti=0;i<checkboxLength;i++){checkboxes[i].addEventListener('change',checkValidity);}checkValidity();}}functionisChecked(){for(leti=0;i<checkboxLength;i++){if(checkboxes[i].checked)returntrue;}returnfalse;}functioncheckValidity(){consterrorMessage=!isChecked()?'Debe de selecionar al menos un lenguaje':'';firstCheckbox.setCustomValidity(errorMessage);}init();})();