ホームページ > に質問 > 本文
<script>var a={}a.name='ははは';a.age=20;a.say=function(){"hello"};document.write(a.say())< ;/script>/*オブジェクトにアクセスすると、ブラウザが unknown を出力するのはなぜですか? 関数の値を直接出力できないのですか? */
Guanhui2020-05-04 10:44:02
say() メソッドにはリターンがないためです
正解. //say=function(){"hello"}; say=function(){return "hello"};