Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 29, 2019 23:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/a68bcf96bdd48740e849603169470f47 to your computer and use it in GitHub Desktop.
Save parzibyte/a68bcf96bdd48740e849603169470f47 to your computer and use it in GitHub Desktop.
/**
* Raíz cúbica en JavaScript
*
* https://parzibyte.me/blog
*
*/
const numero = 1331;
const raizCubica = Math.pow(numero, 1 / 3);
console.log(raizCubica); //10.999999999999998
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment