// arrow function definition
const speak = (name) => { // this sign(=>) represents the function...
return "Shout " + name;
}
console.log(speak('chisom'))
// arrow function definition
const speak = (name) => { // this sign(=>) represents the function...
return "Shout " + name;
}
console.log(speak('chisom'))