配列内の負の数、ゼロの数、および正の数を数えるjavascriptを作成しようとしています。このスクリプトを実行すると、 "ReferenceError:document is not defined"と表示されます。document.writeの出力の問題
document.writeがdocument.writeの一部であることを理解しているので、ドキュメントを定義する方法がわかりません。 neg、zero、およびpos変数を出力する最良の方法は何ですか?
#!/usr/bin/env node
// Function: counter
// Parameter: -3, -1, 0, 0, 0, 4, 17, 29, 30
// Returns the number of each in the array
var input = new Array(-3, -1, 0, 0, 0, 4, 17, 29, 30);
var zero = 0;
var neg = 0;
var pos = 0;
function counter(input, zero, neg, pos)
{
switch (input)
{
case (input < 0):
neg++;
break;
case (input == 0):
zero++;
break;
case (input > 0):
pos++;
break;
}
return document.write(neg, zero, pos);
}
counter(input);
は、 'return document.write ...'を実行する意味がありません。そして、あなたはNodeでdocument.writeを使いたいとは思いません。 – epascarello
代わりにconsole.logを試してください – gaetanoM
これは簡単に解決できます。多かれ少なかれdocument.writeを使用しないでください。 –