Simple JavaScript IDE

前端 未结 4 2008
猫巷女王i
猫巷女王i 2021-02-05 20:45

I am brand new to JavaScript and I would like practice my skills using a simple windows based IDE. While learning I do not want to use any CSS or HTML. I would like if possible

4条回答
  •  故里飘歌
    2021-02-05 21:00

    Have a look at either,

    • WebStorm: real JavaScript IDE (possibly the best.)
    • Sublime Text 2: text editor with syntax highlighting, and possibility to install plugins.

    You can use either software, together with node.js, to get what you want.

    Executing the file,

    function squareNumber(x) {
        return x * x;
    }
    
    console.log(squareNumber(5));
    

    with node.js will output,

    25
    

提交回复
热议问题