函数(Functions)negatenegate_.negate(predicate)返回一个新的 predicate 函数的否定版本。var isFalsy = _.negate(Boolean);_.find([-2, -1, 0, 1, 2], isFalsy);=> 0