尽我所能使它起作用。很想知道我在做什么错。请帮忙。练习二是我所坚持的,而我编写的代码在最后两行。
JS作业7:参数和参数:
在此旁边的窗口中,您将看到有关创建 几个函数和变量。请按照说明进行操作 创建适当的函数和变量。
注意:函数和变量名在它们的两边没有引号,因此 它要求您创建“ variableName”的地方,应该没有引号 在实际的变量或函数名称中。
完成练习后,点击“运行测试”按钮 顶部,这将运行测试。如果您已通过所有测试,请单击 提交并继续下一课!
// Exercise One:
// Step One: Create a function called 'parametersExercise'.
// Step Two: This function will need to take two parameters, call them 'param1' and 'param2'
// Step Three: The function should console log the second parameter.
// DO NOT CHANGE ANYTHING ON THE NEXT FOUR LINES!
function exerciseTwo(){
function sayMyName(parameter1){
console.log(parameter1);
}
}
// Continue below this line:
function parametersExercise(param1, param2){
console.log(param2);
}
// Exercise Two:
// Step One create a variable called 'myName' and assign it the a string of your name.
// Step Two: Call the function called "sayMyName",passing the 'myName' variable as it's only argument.
// NOTE: You do NOT need to create the function (sayMyName), doing so will break the test.
// It has been created for you.
let myName = "Andy"; //These are my
sayMyName(myName); //two answers
答案 0 :(得分:0)
let myName = Andy;
会将变量 Andy
的值分配给变量myName
。如果要使用值Andy
创建字符串,则必须使用引号:"Andy"
或'Andy'
。
请参见https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String。