dim2k2006/project-lvl1-s450

View on GitHub
src/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import readlineSync from 'readline-sync';

/**
 * Gets and prints user name
 */
const getUsername = () => {
  const userName = readlineSync.question('May I have your name? ');

  console.log(`Hello, ${userName}!`);
};

/**
 * Launches game
 */
const launchGame = () => {
  console.log('Welcome to the Brain Games!');

  getUsername();
};

export default launchGame;