Source: tags/version.js

/**
 * Solves equations of the form a * x = b. Returns the value
 * of x.
 * @version 1.2.3
 * @tutorial solver
 */
function solver(a, b) {
    return b / a;
}
THIS IS A DEMO: All content was generated with examples taken from the JSDoc page.