Simple JavaScript IDE(简单的 JavaScript IDE)
问题描述
我是 JavaScript 的新手,我想使用基于 Windows 的简单 IDE 练习我的技能.在学习时我不想使用任何 CSS 或 HTML.如果可能的话,我希望有颜色单步、突出显示和语法检查.
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 to have colour single stepping, highlighting and syntax checking.
例如,您可以输入您的函数,调用它并接收结果
So for example you could type in your function(s), call it and receive the result
function squareNumber(x) {
return x*x;
}
squareNumber(5)
25
我想要比 Internet Explorer 控制台更好的东西.
I would like something better than the Internet Explorer console.
推荐答案
最终使用了这个 IDE,因为我可以在低功耗笔记本电脑上运行它.免费版
Ended up using this IDE as I could run it on a low powered Laptop. Free Version
http://brackets.io/
Microsoft 还提供免费的 Visual Studio 2015 产品,称为Visual Studio Code",也可以在 Mac 和 linux 上运行.只用了一天,但在我的低功耗平板电脑上效果很好.
There is also a free offering from Microsoft with Visual Studio 2015 called "Visual Studio Code" runs on Macs and linux too. Only used it for a day but it work great on my low powered tablet.
https://code.visualstudio.com/
这篇关于简单的 JavaScript IDE的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:简单的 JavaScript IDE
基础教程推荐
- 直接将值设置为滑块 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01