qrxt/frontend-project-lvl1

View on GitHub
bin/brain-games.js

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/env node

import readLine from 'readline-sync';

console.log('Welcome to the Brain Games!');
const userName = readLine.question('May I have your name? ');
console.log(`Hello, ${userName}!`);