8 lines
106 B
TypeScript
8 lines
106 B
TypeScript
const helloFn = (name: string): string => {
|
|
return `Hola ${name}`
|
|
};
|
|
|
|
console.log(helloFn("Mundo"));
|
|
|
|
|