first()

更新日: 2018-09-04

first()

// 使い方
chance.first()
chance.first({ nationality: 'en' })

ランダムな名前を返します。

chance.first();
=> 'Leila'

genderを指定すると、指定した性別の名前を返します。

chance.first({ gender: "female" });
=> 'Emma'

nationalityを指定すると、その国籍の一般的な名前に制限することができます。

chance.first({ nationality: "it" });
=> 'Alberto'

現在、指定可能な国籍はen*1(英語圏)、it(イタリア)、nl(オランダ)です。

*1 公式ではusと記載されていますが、実際はenです。


デモ

ボタンを押すと、英語圏の一般的な名前をランダムに表示します。

結果:
JavaScript
var button = document.getElementById('get-result');
button.addEventListener('click', function() {
  var chance = new Chance();
  document.getElementById('result').innerHTML = chance.first({ nationality: "en" });
}, 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ドキュメントを翻訳/改変したものです。