You are viewing a single comment's thread. Return to all comments →
function greeting(parameterVariable) { // This line prints 'Hello, World!' to the console: console.log('Hello, World!');
// Write a line of code that prints parameterVariable to stdout using console.log: console.log(parameterVariable);
}
function main() { const parameterVariable = readLine();
greeting(parameterVariable);
Seems like cookies are disabled on this browser, please enable them to open this website
Day 0: Hello, World!
You are viewing a single comment's thread. Return to all comments →
function greeting(parameterVariable) { // This line prints 'Hello, World!' to the console: console.log('Hello, World!');
}
function main() { const parameterVariable = readLine();
}