Is there a way to run JavaScript code inside Aptana Studio 3 IDE?

前端 未结 5 2587
感情败类
感情败类 2021-02-20 10:53

I created a Test.js file and wrote two lines of JS code in it:

var a = 5;
console.log(\"The result is = \" + a);

The output should be:

5条回答
  •  眼角桃花
    2021-02-20 11:35

    I think that it would be best if you give Node.js a try. This way, you get to call node test.js on a console window and see the result.

提交回复
热议问题