https://github.com/connor11528/functional-js
exercising functional javascript
https://github.com/connor11528/functional-js
Last synced: 3 months ago
JSON representation
exercising functional javascript
- Host: GitHub
- URL: https://github.com/connor11528/functional-js
- Owner: connor11528
- Created: 2014-07-28T06:27:53.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-10T21:20:23.000Z (over 11 years ago)
- Last Synced: 2025-01-05T13:25:20.437Z (about 1 year ago)
- Language: JavaScript
- Size: 270 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
functional javascript programming
=====
Functional programming is the use of functions that transform values into units of abstraction, subsequently used to build software systems.
function - exists on its own
method - fn created in context of an object
closure - a function that captures the external bindings (ie not its own arguments) contained in the scope in which it was defined for later user (even after the scope has completed)