Skip to content

Instantly share code, notes, and snippets.

@h2ospace
Created March 14, 2013 19:44
Show Gist options
  • Save h2ospace/5164539 to your computer and use it in GitHub Desktop.
Save h2ospace/5164539 to your computer and use it in GitHub Desktop.
underscore: chain, value
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Underscore</title>
<script src="underscore-min.js"></script>
</head>
<body>
<script>
(function() {
var x;
var a = [2, 5, 10, 8];
x = _.chain(a)
.shuffle()
.map(function (num) {
return num * 2;
})
.value();
console.log(x);
})();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment