address()

更新日: 2018-09-04

address()

// 使い方
chance.address()
chance.address({short_suffix: true})

住所をランダムに生成して返します。

chance.address();
=> '5447 Bazpe Lane'

short_suffixを指定すると、短縮形の住所を返します。

chance.address({short_suffix: true});
=> '536 Baner Rd'

デモ

ボタンを押すと、 短縮形の住所をランダムに表示します。

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