練習の形として、ランダムクォートジェネレーターを作成しました。すべてが正常に機能しますが、私を悩ませている問題が1つあります。
var quotes = [(insert a bunch of quotes here) ];
var length = quotes.length;
var rand = Math.round(Math.random()*(length - 1));
function showQuote(){document.write(quotes[rand]);}
showQuote();
document.write呼び出しが関数の一部であり、それ自体ではない場合にのみ出力されるのはなぜですか?