province()
更新日: 2018-09-04
province()
// 使い方
chance.province()
chance.province({full: true})
chance.province({full: true})
カナダの州名をランダムで返します。
chance.province();
=> 'ON'
デフォルトでは、2文字の省略形の州名を返します。
full
を指定すると、省略していない州名を返します。
chance.province({full: true});
=> 'Nova Scotia'
country
を指定すると、州名を取得する国を指定することができます。
chance.province({country: 'it', full: true});
=> 'Vicenza'
現在、指定可能な国はca
(カナダ)、it
(イタリア)です。
デモ
ボタンを押すと、カナダの州名をランダムに表示します。
結果:
JavaScript
var button = document.getElementById('get-result');
button.addEventListener('click', function() {
var chance = new Chance();
document.getElementById('result').innerHTML = chance.province({full: true});
}, 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ドキュメントを翻訳/改変したものです。