Skip to content

Instantly share code, notes, and snippets.

@MacKentoch
Created February 25, 2018 08:41
Show Gist options
  • Save MacKentoch/e3fa6a5b7bb8631d69e1c8ebc03f2072 to your computer and use it in GitHub Desktop.
Save MacKentoch/e3fa6a5b7bb8631d69e1c8ebc03f2072 to your computer and use it in GitHub Desktop.
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