You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!Number.isNaN(_value) && Number(_value)>0) {
var _posision =_arr.indexOf(_value)
var _vocal = _posision == 0 ? 'VOCAL MÁS COMÚN ES A':
_posision == 1 ? 'VOCAL MÁS COMÚN ES E':
_posision == 2 ? 'VOCAL MÁS COMÚN ES I':
_posision == 3 ? 'VOCAL MÁS COMÚN ES O':
_posision == 4 ? 'VOCAL MÁS COMÚN ES U': 'No se encontraron vocales';
console.log(_vocal);
}else{
console.log('No se encontraron vocales');
}
The text was updated successfully, but these errors were encountered:
var _str = ".-Aá?aaaBbEeeweIiiOoU:";
var _arr = [0,0,0,0,0];
//a e i o u
Array.from(_str, (x) => {
});
var _value = Math.max(..._arr);
if (!Number.isNaN(_value) && Number(_value)>0) {
var _posision =_arr.indexOf(_value)
var _vocal = _posision == 0 ? 'VOCAL MÁS COMÚN ES A':
_posision == 1 ? 'VOCAL MÁS COMÚN ES E':
_posision == 2 ? 'VOCAL MÁS COMÚN ES I':
_posision == 3 ? 'VOCAL MÁS COMÚN ES O':
_posision == 4 ? 'VOCAL MÁS COMÚN ES U': 'No se encontraron vocales';
console.log(_vocal);
}else{
console.log('No se encontraron vocales');
}
The text was updated successfully, but these errors were encountered: