After stumbling upon an app online that utilizes AngularJS with Lodash, I noticed a simple way in which Lodash is incorporated. By including the following line in the body (after angular has been included):
<script src='vendor/lodash/3.3.1/lodash.min.js'></script>
<script src='myApp.js'></script>
In the myApp.js file, the first line is:
/* global angular, _ */
After this setup, Lodash can be accessed using the underscore character (_). It's fascinating how it seamlessly works, although the reason behind it remains unclear to me.