Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am lelbil on github.
  • I am lelbil (https://keybase.io/lelbil) on keybase.
  • I have a public key ASAaLq64iROZEtFu66tU8PsBThh-u6Vb_jly-ZRLemKLOQo

To claim this, I am signing this object:

//1
const val2 = 2
//2
// Non, on ne peut pas modifer la valeur d'une constante
//3
// Dans le cas où on veut définir une variable (on voudra pouvoir changer la valeur après)
//4
//1
const helloWorld = () => { console.log('Hello World') }
//helloWorld()
//2
const unParam = param1 => { console.log('Votre paramètre:', param1) }
//unParam('Steven')
//3
const multiplier2 = val => val * 2