📌  相关文章
📜  Day 1: Functionshackerrank 10 天 javascript 解决方案 - Javascript 代码示例

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

代码示例3
// 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.
}