-
-
Save darksh3ll/700592ef5b6bafced15e3f72a0034ff4 to your computer and use it in GitHub Desktop.
Renvoie le carré d'un nombres
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Math.pow => Renvoie le carré d'un nombres | |
| console.log("Math.pow "); | |
| const carre = Math.pow(2,2); //Carré de 2 | |
| console.log(carre); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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