-
-
Save viix/d20ac094455c5483947d to your computer and use it in GitHub Desktop.
Using Underscore.js from the Node.js REPL
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
/* | |
Per <http://stackoverflow.com/questions/5691901/using-the-underscore-module-with-node-js>, | |
from the Node.js REPL, use two underscores (__) instead of a single underscore (_) | |
because Node uses _ for the last return value. | |
Note that if your program is in a file, you can still use a single underscore (_). | |
*/ | |
var __ = require("underscore"); | |
__.each([1, 2, 3], function(e) { console.log(e); }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment