Author: Not specified | Language: javascript |
Description: Not specified | Timestamp: 2018-04-16 14:33:40 +0000 |
View raw paste | Reply |
- Function.prototype.bind = function(ctx) {
- var fn = this;
- return function() {
- fn.apply(ctx, arguments);
- };
- };
View raw paste | Reply |