I have the following function:
function isBigEnough(element, index, array) {
  return (element >= 10);
}
var filtered = [12, 5, 8, 130, 44].filter(isBigEnough);
// filtered is [12, 130, 44] 
How can I return values that are larger than (or equal to) a number other than 10? For example, array.filter(isBigEnough(15)) would give me 44, 130
 
    