1.0.0-alpha.3 • Published 10 years ago
underscore_l v1.0.0-alpha.3
Underscore L JavaScript library
===========================================
Installation
via bower:
$ bower install underscore_land then, include the underscore_l.js into your application.
<script src="bower_components/underscore_l/underscore_l.js"></script>Usage
Example 1: Search the largest value in the array.
var arr = [3, 0, -3, 0, 1, 8, 2, 4];
var max = _l.max(arr);
console.log(max); // result: 8Example 2: Search smallest value in the array.
var arr = [3, 0, -3, 0, 1, 8, 2, 4];
var min = _l.min(arr);
console.log(min); // result: -3License
MIT
1.0.0-alpha.3
10 years ago