Пожалуйста, помогите мне с упражнениями, по какой-то причине мой код не работает и не позволяет успешно его выполнить.
// 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 = "Juell";
sayMyName(myName);
console.log();
}