Last active
December 16, 2016 17:48
-
-
Save phlco/d5e1f225bd0aa9c076612c3a7a916d3f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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