I’am relatively new to javascript.
I work with several javascript files in the IDE, and frequently I see the warning “Declaration of variable ‘foo’ was not found in function ‘foo’ or enclosed scope” when I use a variable or function declared in another javascript file.
When I run the program is ok, but is tedious to control the warnings in the IDE every time. Exist a language keyword similar to C’s “include” or Java’s “import” to include a javascript file into another?
Thanks.