Created
September 4, 2018 20:19
-
-
Save Anna-Myzukina/f626ba44bbc2a0cd053ca97c688bd0cd to your computer and use it in GitHub Desktop.
tower-of-babel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Exercise 1 | |
/** | |
Create a javascript program that takes the the first command-line argument and | |
outputs it right after a "Hello " String using ES6 template strings | |
*/ | |
var arg = process.argv[2]; | |
console.log(`Hello ${arg}`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment