What is New with VS 2013-JavaScript

JavaScript in 2013
  • Deprecation Notes in Intellisence.
  • In 2012, the "Go to definition" for a namespace is not available. Which is available in 2013.
  • Identifies will be highlighted in the source code. Which is not available in 2012.
  • We could use "let" and "const" variables in the 2013 java script.
Syntax
  1. let variable1 = value1 
which is restricted to block in which is declared.
  1. const Constant1=value1 
This value cannot be changed.