I tried to use underscore in Visual Studio Code and only if I use this line of code at the beginning:
var _ = require('underscore');
The output is correctly working. If I delete it, the output gives the following error:
ReferenceError: _ is not defined
Is it possible to "install the library of underscore permamently in visual studio code", so that I dont need every time the code from above? Or there are some libraries that you need to "activate" with a line of code first every time.
PS: The word library is a bit new for me, so maybe I am using it wrong.