currency()

更新日: 2018-09-04

currency()

// 使い方
chance.currency()

ランダムな通貨を返します。

chance.currency();
=> { code: "TVD", name: "Tuvalu Dollar" }

デモ

ボタンを押すと、通貨オブジェクトをランダムに表示します。

結果:
JavaScript
var button = document.getElementById('get-result');
button.addEventListener('click', function() {
  var chance   = new Chance(),
      currency = chance.currency(),
      result = document.getElementById('result'),
      ul, li;
  ul = document.createElement('ul');
  Object.keys(currency).forEach(function(i) {
    li = document.createElement('li');
    li.textContent = month[i];
    ul.appendChild(li);
  });
  if (result.firstChild !== null) {
    result.removeChild(result.firstChild);
  }
  result.appendChild(ul);
}, false);
HTML
<button id="get-result">結果表示</button>
<div>
  <span>結果:</span>
  <span id="result"></span>
</div>

© 2015 Victor Quinn Released under the MIT license

このコンテンツはVictor Quinn(victorquinn)によるChanceドキュメントを翻訳/改変したものです。