Skip to content

Instantly share code, notes, and snippets.

@mailtodanish
Last active September 1, 2022 18:34
Show Gist options
  • Select an option

  • Save mailtodanish/d41012bfe37dc53fc801d09eec674306 to your computer and use it in GitHub Desktop.

Select an option

Save mailtodanish/d41012bfe37dc53fc801d09eec674306 to your computer and use it in GitHub Desktop.
Asynchronous Module Definition Samlple
define(['dep1', 'dep2'], function (dep1, dep2) {
//Define the module value by returning a value.
return {
testMethod: function(){
console.log('testMethod')
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment