1
0
mirror of https://github.com/c0de-archive/hacktoberfest-2018.git synced 2025-01-09 02:02:50 +00:00
hacktoberfest-2018/code/hello.js
2018-10-04 22:24:51 -03:00

5 lines
74 B
JavaScript

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