Skip to content

Instantly share code, notes, and snippets.

@aszx-fyh
aszx-fyh / app.js
Created September 9, 2017 09:31 — forked from feiwen8772/app.js
"Getting Functional with Javascript" Blog post source files
/**
* Primary application logic for our Functional Programming blog example
* See related blog series at: http://www.datchley.name/tag/functional-programming/
* Version: 2.0
*/
// A simple, resuable comparison for '>='
function greaterThanOrEqual(a, b) {
return a >= b
}