You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Takes a number and returns its square value
*
* @class square
* @param {number} num - The number for squaring
* @return {number}
*/
var square = function (num) {
return num * num;
}
Add yuidoc-like documentation to the js-files.
Example: