Skip to content

Instantly share code, notes, and snippets.

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