5 lines
74 B
JavaScript
Raw Normal View History

2018-10-04 22:24:51 -03:00
const hello = name => {
console.log(`Hello, ${name}`)
}
hello('World!')