funkcja strzałki JavaScript z jednym argumenem

let greet = x => console.log(x);
greet('Hello'); // Hello
SAMER SAEID