Réponse

const hello =(name)=> "hello" + name;

Colonne
Explication

equivalent d function hello (name) { return "hello"+ name;}

Question

declaration de la variable hello aui est une reference vers la fonction fleché qui est retour

Thématique