📅  最后修改于: 2022-03-11 15:03:28.049000             🧑  作者: Mango
// 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.
}