Skip to content

Instantly share code, notes, and snippets.

@shubhamt619
Created September 8, 2022 08:44
Show Gist options
  • Save shubhamt619/d93a3283247465186f80603b1603e38f to your computer and use it in GitHub Desktop.
Save shubhamt619/d93a3283247465186f80603b1603e38f to your computer and use it in GitHub Desktop.
function cube(number) {
let cubeOfNumber = Math.pow(number, 3);
return cubeOfNumber;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment