JS Параметр и Аргументы - PullRequest
       20

JS Параметр и Аргументы

0 голосов
/ 10 апреля 2019

Пожалуйста, помогите мне с упражнениями, по какой-то причине мой код не работает и не позволяет успешно его выполнить.

// 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();

}

1 Ответ

0 голосов
/ 13 апреля 2019

Я только что сделал это и избавился от последнего console.log и изменил let на var.Итак, вот часть, которую вы делаете:

var myName = "YourName";SayMyName (Myname);

...