'use strict'; /** * @see [Nowhere](http://nowhere.com) */ function foo() {} /** * @see AnObject#myProperty */ function bar() {} /** * @classdesc My class. * @description My class. * @exception {Error} Some error. * @param {string} myParam - My parameter. * @property {string} value - Value of myParam. * @return {MyClass} Class instance. * @see [Example Inc.](http://example.com) */ function MyClass(myParam) { this.value = myParam; }