No issues, i was just wondering, when going through the source code.
Here, Why === faster than == in JavaScript?
it says ===
is actually faster, so why use ==
in this case?
_.each = _.forEach = function(obj, iteratee, context) {
if (obj == null) return obj;