chenguoqiang007
Results
1
issues of
chenguoqiang007
运行node程序时,进入到文件夹后,不需要执行进入node环境。 主要原因是看到“>"符号,就认为需要执行进入node环境。因为执行node环境后,也会出现这个符号。所以才导致的这个问题。 正确的流程: 1. >cd getting-started-with-javascript/study/lesson2 2. >node sample_code.js 我的错误的流程: 1. >cd getting-started-with-javascript/study/lesson2 2. >cd lesson2 node 3. >node sample_code.js