Source: tags/description.js

/**
 * @param {number} a
 * @param {number} b
 * @returns {number}
 * @description Add two numbers.
 */
function add(a, b) {
    return a + b;
}
THIS IS A DEMO: All content was generated with examples taken from the JSDoc page.