Skip to content

Commit

Permalink
Merge pull request #32 from kotAPI/patch-1
Browse files Browse the repository at this point in the history
Update anything.js
  • Loading branch information
Rabrennie committed Dec 5, 2015
2 parents 2e4689a + 6c657c8 commit 6d8f44a
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion anything.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@
this.version = "0.0.1"

}

function addTwoThings(thingOne,thingTwo) {

return thingOne+thingTwo

}
function subtractTwoThings(thingOne,thingTwo) {

return thingOne-thingTwo

}
function divideTwoThings(thingOne,thingTwo) {

return thingOne/thingTwo

}
function multiplyTwoThings(thingOne,thingTwo) {

return thingOne*thingTwo

}

//Functions go here
var doTheThing = function() {
Expand Down Expand Up @@ -39,7 +60,7 @@
alert("Hey. Uhh.. Hello.")
}

var hash = function(message) {
function hash(message) {
return message.length.toString(16);
}

Expand Down

0 comments on commit 6d8f44a

Please sign in to comment.