Commit 7f14f38b authored by somyos's avatar somyos

ส่งงานสัปดาห์ที่3

parent dcaf7431
const rl = require('readline');
const r = rl.createInterface(input = process.stdin)
/*
r.question('กรอกชื่อให้แน ', (name , what) => {
r.question('ปีเกิดคุณ คิอ พ.ศ. ', (year) => {
year = 2561 - year
r.question('ขอเบอร์ด่วน', (phone) => {
console.log(`คุณ ${name} อายุ ${year} เบอร์ ${phone}.`)
r.close()
})
})
});
*/
let i = 0
let data = []
r.on('line', (line) => {
data[i]= line
i++
if(i == 3) {
data[1] = 2561-data[1]
console.log(`สวัสดี::${data[0]} , คุณอายุ::${data[1]} , เบอร์::${data[2]}`)
r.close()
}
})
\ No newline at end of file
{
"name": "week03",
"version": "1.0.0",
"description": "การบ้านสัปดาห์ที่3",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"homework03"
],
"author": "",
"license": "ISC"
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment