i have to turn an arrow function to a regular one. The problem is that the arrow function is pretty different from those i'm used to work with hence harder to transform. I need your help please. Here is the arrow function followed by the regular function i tried to code. The functions :
(name) => {
`Bonjour, ${name} ! Comment vas-tu ?`;
}
taille = () =>
{
function(name)
{
return `Bonjour, ${name} ! Comment vas-tu?`;
}