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
- let variable1 = value1
which is restricted to block in which is declared.
- const Constant1=value1
This value cannot be changed.

Join the conversation! Your thoughts help the community grow.