Difference between revisions of "Dependency (computer programming)"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) (Created page with "In computer programming, '''dependency''' is a relationship between two resources, in which one resources is ''dependent upon'' the other. == Backbone.js == For example...") |
Karl Jones (Talk | contribs) (→Backbone.js) |
||
Line 1: | Line 1: | ||
In [[computer programming]], '''dependency''' is a relationship between two resources, in which one resources is ''dependent upon'' the other. | In [[computer programming]], '''dependency''' is a relationship between two resources, in which one resources is ''dependent upon'' the other. | ||
− | == Backbone.js == | + | == Backbone.js depends on Underscore.js == |
For example, [[Backbone.js]] requires [[Underscore.js]]. | For example, [[Backbone.js]] requires [[Underscore.js]]. |
Revision as of 11:51, 5 April 2016
In computer programming, dependency is a relationship between two resources, in which one resources is dependent upon the other.
Backbone.js depends on Underscore.js
For example, Backbone.js requires Underscore.js.
Underscore.js must come first in the code, because Backbone.js is dependent on Underscore.js.
See also
External links
- Coupling (computer programming) @ Wikipedia