2017-01-26 177 views
-1

我目前正在通過「Learnyounode」學習Node。 然而,在我的電腦上測試一些JavaScript文件時,任何時候我嘗試運行甚至一個簡單的「Hello World」Console.log未定義

console.log("Hello World"); 

它給了我一個錯誤返回

Error: 'console' is undefined. 

這是一個問題我命令提示符或我係統上的錯誤?我需要重新安裝Javascript嗎?我的代碼在我的瀏覽器控制檯中正常工作,但不在我本地的命令行中。

任何幫助將不勝感激,提前致謝!

+0

看看下面的帖子,這可能會解釋你看到的結果:http://stackoverflow.com/questions/8457389/node-js-displays-undefined-on-the-console –

+0

這是你的問題: http://osric.com/chris/accidental-developer/2016/06/node-js-error-console-is-undefined/ – Adam

+0

記得標記答案,如果它解決了你的問題接受:) [如何接受回答工作?](http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work) –

回答

0

我知道有開始的NodeJS可能很難...嘗試follwing:

1. Create a .js file... call it test.js 
2. In the file write command: 

    console.log('hello world from node'); 

3. save the file. 
4. Navigate to that directory and type: 

    node test.js 

Now you will see the output. 

祝您好運!

+0

謝謝!這是因爲我沒有用節點來領導它。輸出工作,現在我要學習! – Gwinert

+0

太好了。我很高興它幫助...祝你好運! :) – spooky

相關問題