hacktoberfest-2018/code/hello.js

5 lines
74 B
JavaScript

const hello = name => {
console.log(`Hello, ${name}`)
}
hello('World!')