Me pregunto si hay una forma conocida, integrada / elegante de encontrar el primer elemento de una matriz JS que coincida con una condición dada. AC # equivalente sería List.Find .
Hasta ahora he estado usando un combo de dos funciones como este:
// Returns the first element of an array that satisfies given predicate
Array.prototype.findFirst = function (predicateCallback) {
if (typeof predicateCallback !== 'function') {
return undefined;
}
for (var i = 0; i < arr.length; i++) {
if (i in this && predicateCallback(this[i])) return this[i];
}
return undefined;
};
// Check if element is not undefined && not null
isNotNullNorUndefined = function (o) {
return (typeof (o) !== 'undefined' && o !== null);
};
Y luego puedo usar:
var result = someArray.findFirst(isNotNullNorUndefined);
Pero dado que hay tantos métodos de matriz de estilo funcional en ECMAScript , ¿tal vez ya exista algo como esto? Me imagino que mucha gente tiene que implementar cosas como esta todo el tiempo ...
return (typeof (o) !== 'undefined' && o !== null);
hasta esto return o != null;
. Son exactamente equivalentes.