I find the _.something(somevar, some_function_or_other_thing);
"syntax" quite ugly. What are some good alternatives that use ruby-like iterators and similar stuff:
10..times(function(i) {
console.log(i);
});
uppercasefoobar = ["foo", "bar"].each(function(i) {
return i.toUpperCase();
});
Also, I am using node.js, so it should focus more on the code than DOM stuff.