我是编程新手,并且使用 codeademy 来帮助解决这个问题,如果这个问题有点明显,请原谅我。我主要希望能够调用一个函数。我已经复制并粘贴了下面的代码学院的东西,我主要想知道我必须做什么才能“调用问候功能”。如果你能准确地解释为什么要做什么,那就太好了。
Below is the greeting function!
// See line 7
// We can join strings together using the plus sign (+)
// See the hint for more details about how this works.
var greeting = function (name) {
console.log("Great to see you," + " " + name);
};
// On line 11, call the greeting function!`