forked from dreamapplehappy/hacking-with-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcr.1.js
58 lines (55 loc) · 1.36 KB
/
cr.1.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//function multiply(x) {
// var y = function(x) {
// return multiply(x * y);
// };
// y.toString = y.valueOf = function() {
// return x;
// };
// return y;
//}
//
////console.log(multiply(1)(2)(3)); // true
////console.log(multiply(1)(2)(3)(4)(5) == 120); // true
//
//function add() {
// var args = Array.prototype.slice.call(arguments);
// var _that = this;
// return function() {
// var newArgs = Array.prototype.slice.call(arguments);
// var total = args.concat(newArgs);
// if(!arguments.length) {
// var result = 1;
// for(var i = 0; i < total.length; i++) {
// result *= total[i];
// }
// return result;
// }
// else {
// return add.apply(_that, total);
// }
// }
//}
//add(1)(2)(3)(); // 6
//add(1, 2, 3)(); // 6
//
//console.log(add(1)(2)(3)());
//console.log(add(1.1)(2.2)(3.3)());
//console.log(add(1, 2, 3)());
var curry = function(fn) {
var _args = []
return function cb() {
if (arguments.length == 0) {
return fn.apply(this, _args)
}
Array.prototype.push.apply(_args, arguments);
return cb;
}
}
function add() {
var res = 0;
for(var i = 0; i < arguments.length; i++) {
res += arguments[i];
}
return res;
}
console.log(curry(add)(1)(2)(3)());