【JS】Underscore.js ~ 入門編 ~

■ Underscore.js

 * JavaScript のユーティリティ・ライブラリ

■ 公式サイト

https://underscorejs.org/


■ サンプル

shuffle : 配列をシャッフル

<!DOCTYPE html>
<html lang="jp">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script src="">https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
<title>underscore.js Hello World</title>
</head>
<body>
<script type="text/javascript">
(function() {
  var x = _.shuffle([2,7,3,6,1,5]);
  console.log(x);
})();
</script>
</body>
</html>