Underscore is a library that nicely rounds out JavaScript’s rather limited standard library. Thanks to the
Node Package Manager, it’s very simple to install on Node.js:
$ npm install underscore
Then you can use it in code as follows:
var _ = require("underscore");
If you want to play with Underscore interactively in the Node.js REPL, you can’t give it the name
_, because that is used by the REPL, to hold the previous input:
> 3 + 4
7
> _
7
Solution: choose another name.
> var u = require("underscore");
> u.uniq([5, 3, 5, 5, 3, 1])
[ 5, 3, 1 ]
3 comments:
thanks for the tip, I was trying to assign underscore as _ and was wondering why it was not working :) cheers
I definitely agree with Julien Castelain. I also had the same problem good thing I saw your post on Node.js
thanks!
Post a Comment