📜  第 0 天:你好,世界! hackerrank 10 天的 javascript 解决方案 - Javascript 代码示例

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

代码示例1
// Day 0: Hello, World! hackerrank 10 days of javascript solution
function greeting(parameterVariable) {
    // This line prints 'Hello, World!' to the console:
    console.log('Hello, World!');
    console.log(parameterVariable);
    // Write a line of code that prints parameterVariable to stdout using console.log:
}