Skip to content

Instantly share code, notes, and snippets.

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