You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exer_8_input2.js 183B

1234567891011
  1. /* declaratie variablen */
  2. const input = require('readline-sync');
  3. let name = input.question("what's your name?\n");
  4. /* output */
  5. console.log('Good Morning, ${name}!');