javascript
Dojo Toolkit
with the 1.7 release Dojo adopted the Asynchronous Module Definition (AMD) format for its source code, allowing completely modular web application development.
require
enables you to load modules and use them, whiledefine
allows you to define your own modules. A module is typically a single JavaScript source file.
dojo/on
1 | require(["dojo/on"], function(on){ |
Closure
1 | define(function(){ |
Singleton
1 | define(function(){ |