“node js mendapatkan input dari konsol” Kode Jawaban

Input di Node JS

const readline = require('readline').createInterface({
  input: process.stdin,
  output: process.stdout
});
 
readline.question('who are you: ', name => {
	console.log(`hello, hi there ${name}`);
	readline.close();
})
Poised Panda

Dapatkan input di terminal nodeJS

const readline = require('readline').createInterface({
  input: process.stdin,
  output: process.stdout
});

readline.question('Who are you?', name => {
  console.log(`Hey there ${name}!`);
  readline.close();
});
Different Dunlin

Mendapatkan input pengguna di Node JS

//Make sure you have Node and NPM installed
//Run "npm install prompt-sync" in the terminal
const prompt = require('prompt-sync')();

const name = prompt('What is your name?');
console.log(`Hey there ${name}`);
Blushing Beetle

cara mengambil input dari nodej pengguna

const prompt = require("prompt-sync")();

const input = prompt("What is your name? ");

console.log(`Oh, so your name is ${input}`);
Clever Crossbill

node js mendapatkan input dari konsol

--------------- easiest method I found---------------------------
  
Run npm install prompt-sync in the terminal
const prompt = require('prompt-sync')();

var name = prompt('what is your name?');

console.log(name);

--------------------------------------------------------------
Kriss Sachintha

Input Pengguna NodeJS

// Importing the module
const readline = require("readline-sync");
  
// Enter the number
let a = Number(readline.question());
let number = [];
for (let i = 0; i < a; ++i) {
  number.push(Number(readline.question()));
}
console.log(number);
Delightful Dolphin

Jawaban yang mirip dengan “node js mendapatkan input dari konsol”

Pertanyaan yang mirip dengan “node js mendapatkan input dari konsol”

Lebih banyak jawaban terkait untuk “node js mendapatkan input dari konsol” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya