📜  Day 0: Hello, World javascript hackerrank 30天代码解法——Javascript代码示例

📅  最后修改于: 2022-03-11 15:02:19.895000             🧑  作者: Mango

代码示例2
// Day 0: Hello, World javascript hackerrank 30 days of Code solution
function processData(inputString) {
    // This line of code prints the first line of output
    console.log("Hello, World.");
    console.log(inputString);
    // Write the second line of output that prints the contents of 'inputString' here.
}