Skip to content

Instantly share code, notes, and snippets.

@dmidlo
Created November 23, 2015 05:56
Show Gist options
  • Save dmidlo/bc9e7e8cf5ad396910a7 to your computer and use it in GitHub Desktop.
Save dmidlo/bc9e7e8cf5ad396910a7 to your computer and use it in GitHub Desktop.
function excludeNullsFromArray(arr) {
function isTruthy(arg){
//typecast elements to bool. array.filter iterates, so 'true' elements will
// be included in final return.
return Boolean(arg);
}
return(arr.filter(isTruthy));
}
excludeNullsFromArray([7, "ate", "", false, 9]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment