Skip to content

Instantly share code, notes, and snippets.

@Anna-Myzukina
Created September 4, 2018 20:19
Show Gist options
  • Save Anna-Myzukina/f626ba44bbc2a0cd053ca97c688bd0cd to your computer and use it in GitHub Desktop.
Save Anna-Myzukina/f626ba44bbc2a0cd053ca97c688bd0cd to your computer and use it in GitHub Desktop.
tower-of-babel
// 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