Skip to content

Instantly share code, notes, and snippets.

@darksh3ll
Last active June 15, 2018 07:58
Show Gist options
  • Select an option

  • Save darksh3ll/700592ef5b6bafced15e3f72a0034ff4 to your computer and use it in GitHub Desktop.

Select an option

Save darksh3ll/700592ef5b6bafced15e3f72a0034ff4 to your computer and use it in GitHub Desktop.
Renvoie le carré d'un nombres
//Math.pow => Renvoie le carré d'un nombres
console.log("Math.pow ");
const carre = Math.pow(2,2); //Carré de 2
console.log(carre);
console.log(2 ** 2) // Renvoie le carree de 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment