Created
December 11, 2019 16:04
-
-
Save ShellyShulei/152816d3fa05c5fff9ac4a951f1d8a3d to your computer and use it in GitHub Desktop.
Calculates the volume of a sphere.
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
| name: Function | |
| description: Calculates the volume of a sphere. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| /** | |
| * Calculates the volume of a sphere. | |
| * @customfunction | |
| * @param {number} radius | |
| * @returns The volume of the sphere. | |
| */ | |
| function volume(radius) { | |
| return (Math.pow(radius, 3) * 4 * Math.PI) / 3; | |
| } | |
| language: typescript | |
| libraries: | | |
| https://appsforoffice.microsoft.com/lib/1/hosted/office.js | |
| @types/office-js | |
| core-js@2.4.1/client/core.min.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment