4 8 input with readline sync c2 b6

Solutions on MaxInterview for 4 8 input with readline sync c2 b6 by the best coders in the world

showing results for - "4 8 input with readline sync c2 b6"
Hadrien
21 Sep 2020
1/*Gathering input from the user requires the following setup:*/
2
3const input = require('readline-sync');
4
5let info = input.question("Question text... ");
6
7// example // 
8const input = require('readline-sync');
9
10let name = input.question("Enter your name: ");