Created
March 29, 2015 14:30
-
-
Save pragmaticlogic/91c1cd2f32ce06c7843b to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/jusilo
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/ramda/0.13.0/ramda.min.js"></script> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <script id="jsbin-javascript"> | |
| "use strict"; | |
| var f = function (a, b, c) { | |
| return a + b + c; | |
| }; | |
| var fc = R.curry(f); | |
| var upperF = R.map(R.toUpper); | |
| upper = upperF("hello"); | |
| </script> | |
| <script id="jsbin-source-html" type="text/html"><!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/ramda/0.13.0/ramda.min.js"><\/script> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| </body> | |
| </html></script> | |
| <script id="jsbin-source-javascript" type="text/javascript">var f = (a, b, c) => { | |
| return a + b + c; | |
| }; | |
| var fc = R.curry(f); | |
| var upperF = R.map(R.toUpper); | |
| upper = upperF('hello'); | |
| </script></body> | |
| </html> |
This file contains hidden or 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
| "use strict"; | |
| var f = function (a, b, c) { | |
| return a + b + c; | |
| }; | |
| var fc = R.curry(f); | |
| var upperF = R.map(R.toUpper); | |
| upper = upperF("hello"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment