Skip to content

Instantly share code, notes, and snippets.

@phlco
Last active December 16, 2016 17:48
Show Gist options
  • Save phlco/d5e1f225bd0aa9c076612c3a7a916d3f to your computer and use it in GitHub Desktop.
Save phlco/d5e1f225bd0aa9c076612c3a7a916d3f to your computer and use it in GitHub Desktop.
/**
* Calculates area
* @param {Number} w - represents width
* @param {Number} h - represents height
* @return {Number} Sum of w and h
*/
function area(w, h) {
return w * h;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment