Reputation: 924
...without waiting for compilation (i.e. "Build").
Note: By dynamic I mean that this creates a variable immediately after I hit enter without any delay.
var x = 1;
I current use chrome dev tools to write dynamic java script, but I'd prefer to use visual studio if possible.
Upvotes: 0
Views: 43
Reputation: 2856
You can modify JavaScript save and refresh your browser.
JavaScript is interpreted in your browser not visual studio.
You can't debug JavaScript in visual studio as far as I am aware.
Upvotes: 1