Clarify confusing point

This commit is contained in:
Stanislav (Stanley) Modrak 2022-06-16 16:07:52 +01:00 committed by GitHub
parent c3b904def3
commit 250f9a38a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,7 +102,7 @@ function loadScript(src, callback) {
*!* *!*
loadScript('https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.2.0/lodash.js', script => { loadScript('https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.2.0/lodash.js', script => {
alert(`Cool, the script ${script.src} is loaded`); alert(`Cool, the script ${script.src} is loaded`);
alert( _ ); // function declared in the loaded script alert( _ ); // _ is a function declared in the loaded script
}); });
*/!* */!*
``` ```