hacktoberfest-2018/code/hello.js

5 lines
74 B
JavaScript
Raw Normal View History

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