StinkySocks
StinkySocks

Reputation: 924

Can you run javascript as a dynamic language in Visual Studio 2013?

...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

Answers (1)

ADL
ADL

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

Related Questions