Skip to content

Instantly share code, notes, and snippets.

@jamigibbs
jamigibbs / calcfunctions.js
Last active February 3, 2023 09:00
Calculating With Functions. eg. seven(times(five()));
function makeNum(num, func) {
if (func === undefined) {
return num;
} else {
return func(num);
}
}
function zero(func) {
return makeNum(0,func);