Created
February 25, 2018 08:41
-
-
Save MacKentoch/e3fa6a5b7bb8631d69e1c8ebc03f2072 to your computer and use it in GitHub Desktop.
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
function ajoute2(nombre) { | |
return nombre + 2; | |
} | |
console.log('quatre: ', ajoute2(2)); | |
console.log('six: ', ajoute2(ajoute2(2))); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment