Slide 8
Slide 8 text
AMD - define() - factory
● Function that should be executed to
instantiate the module or object.
● Only executed once.
define(‘ironMan’
, [‘stark.tony’, ‘ego.massive’, ‘suit’]
, function(Tony, Ego, Suit) {
return Tony.apply(Ego).don(Suit);
});