cc_type()
更新日: 2018-09-04
cc_type()
// 使い方
chance.cc_type()
chance.cc_type({raw: true})
ランダムなクレジットカードタイプを返します。
chance.cc_type();
=> 'Visa'
デフォルトでは、タイプ名のみを返します。
raw
を指定すると、name
、short_name
、prefix
、length
で構成されたオブジェクト全体を返します。
chance.cc_type({raw: true});
=> {name: 'Discover Card', short_name: 'discover', prefix: '6011', length: 16}
利用可能なtype名についてはcc()を参照してください。
デモ
ボタンを押すと、クレジットカードタイプオブジェクトをランダムに表示します。
結果:
JavaScript
var button = document.getElementById('get-result');
button.addEventListener('click', function() {
var chance = new Chance(),
cc_type = chance.cc_type({raw: true}),
result = document.getElementById('result'),
ul, li;
ul = document.createElement('ul');
Object.keys(cc_type).forEach(function(i) {
li = document.createElement('li');
li.textContent = cc_type[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ドキュメントを翻訳/改変したものです。