I tested Javascript Intellisense in both Visual Studio 2015 Community and Visual Studio 2017 Enterprise. The first of them is not context-sensitive and does not contain a description of methods or arguments.
As an example, the following Intellisense offer is only offered in 2017 (see also screenshots):
<!DOCTYPE html>
<html>
<body>
<script src="Scripts/d3.js"></script>
<script>
d3.line
</script>
</body>
</html>
Run codeHide resultVS 2017 js intellisense works
VS 2015 js intellisense not working
I work for a company where we have VS2015 for other reasons. Any workaround is appreciated.
source
share