exp()

更新日: 2018-09-04

exp()

// 使い方
chance.exp()
chance.exp({raw: true})

クレジットカードの有効期限をランダムに返します。

chance.exp();
=> '10/2020'

rawを指定すると、文字列ではなくmonthyearで構成されたオブジェクトを返します。

chance.exp({raw: true});
=> {month: '11', year: '2017'}

デモ

ボタンを押すと、有効期限オブジェクトをランダムに表示します。

結果:
JavaScript
var button = document.getElementById('get-result');
button.addEventListener('click', function() {
  var chance = new Chance(),
      exp    = chance.exp({raw: true}),
      result = document.getElementById('result'),
      ul, li;
  ul = document.createElement('ul');
  Object.keys(exp).forEach(function(i) {
    li = document.createElement('li');
    li.textContent = exp[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ドキュメントを翻訳/改変したものです。