country()
更新日: 2018-09-04
country()
// 使い方
chance.country()
chance.country({ full: true })
国名をランダムで返します。
chance.country();
=> 'LT'
デフォルトでは、ISO 3166-1で定められた2文字の国コードを返します。
full
を指定すると、正しい国名を返します。
chance.country({ full: true });
=> 'Venezuela'
デモ
ボタンを押すと、正しい国名をランダムに表示します。
結果:
JavaScript
var button = document.getElementById('get-result');
button.addEventListener('click', function() {
var chance = new Chance();
document.getElementById('result').innerHTML = chance.country({ 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ドキュメントを翻訳/改変したものです。