Created
April 2, 2018 22:23
-
-
Save leggomuhgreggo/5db2c59c212c37276447fa5d8ca4c25b to your computer and use it in GitHub Desktop.
Chain: Internal Function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.clear(); | |
var Given = function() { | |
const Internal = function(num) { | |
this.newNum = num; | |
this.add = function(num) { | |
this.newNum = num + this.newNum; | |
return this; | |
}; | |
this.subtract = function(num) { | |
this.newNum = this.newNum - num; | |
return this; | |
}; | |
this.multiply = function(num) { | |
this.newNum = this.newNum * num; | |
return this; | |
}; | |
this.divide = function(num) { | |
this.newNum = this.newNum / num; | |
return this; | |
}; | |
this.value = function(num) { | |
return this.newNum; | |
}; | |
}; | |
return function(num) { | |
return new Internal(num); | |
}; | |
}; | |
var given = Given(); | |
console.log(given(2).add(2).subtract(2).divide(1).multiply(2).value()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment