Transformations
$.extend
Remove Input
$.extend({}, objA, objB);
Ouput
var _extend = ...;
_extend({}, objA, objB);
$.now
Remove Click here to see how this transformation works.
Input
$.now();
Ouput
Date.now();
$.each
Remove Input
$.each(array, function(i, item) {
console.log(i, item);
});
Ouput
array.forEach(function (item, i) {
console.log(i, item);
});