2016-03-29 13 views
0

配列内の負の数、ゼロの数、および正の数を数える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); 
+0

は、 'return document.write ...'を実行する意味がありません。そして、あなたはNodeでdocument.writeを使いたいとは思いません。 – epascarello

+0

代わりにconsole.logを試してください – gaetanoM

+0

これは簡単に解決できます。多かれ少なかれdocument.writeを使用しないでください。 –

答えて

0

あるもの3ゼロを印刷していない、とあなたは唯一の引数で関数を呼び出す場合、私は他の三つを定義するために避けることをお勧め。

コードは次のとおりです。

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) { 
     input.forEach(function(ele) { 
      switch (true) { 
       case (ele < 0): 
        neg++; 
        break; 
       case (ele == 0): 
        zero++; 
        break; 
       case (ele > 0): 
        pos++; 
        break; 
      } 
     }); 
    } 

    counter(input); 

    console.log(neg, zero, pos); 
0

私はconsole.logを使って動作させましたが、出力が間違っています。私のスイッチdoes notは正しく配列を評価しているようです。それは関係なく、入力の値が配列に含まれるすべての要素にあなたがサイクルに必要

#!/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; 
    } 
} 

counter(input); 

console.log(neg, zero, pos); 
0

it is my understanding that document.write is part of node.js?

いや、本当にありません。 document objectは、ブラウザのDOMインターフェイスの一部です。

おそらくconsole.logを使用します。