javascript DécouvertedeNodeJS

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript DécouvertedeNodeJS相关的知识,希望对你有一定的参考价值。

process.stdin.resume()
process.stdin.setEncoding('utf8')

console.log("How old are you ? (between 0 and 99 years old)")
process.stdin.on('data', (yearsold) => {
    if (yearsold > 99) {
        console.log("Upper age limit exceeded")
        process.exit()
    }
    else if (isNaN(yearsold)) {
        console.log("How old are you ? (Please enter an arabic numeral)");
    }
    else if (age === undefined) {
        console.log("Please enter an arabic numeral");
        process.exit()
    }
    else {
        let currentDate = whatisthedaytoday();
        let birthYear = currentDate.year() - yearsold;
        console.log(`Your birth year is ${birthYear}`);
        process.exit()
    }
})

以上是关于javascript DécouvertedeNodeJS的主要内容,如果未能解决你的问题,请参考以下文章

javascript QuêteBasesdu Javascript - Découvertedulangage

javascript DécouvertedeNode Js

javascript DécouvertedeNodeJS

javascript DécouverteNodeJs

javascript Déclarationdecomponent

javascript Déclarationdecomponent没有范围