Learn Introductory JavaScript by Building a Pyramid Generator - Step 54

Tell us what’s happening:

building a pyramid generator - 54
I am stumped on this one…Please help.
The instructions are to have a function called addTwoNumbers which have two arguments of 5 and 10. Then return the sum of the two arguments. Then declare a sum variable and assign it the value of calling your addTwoNumbers function with 5 and 10 as the arguments. Log sum variable to the console. Here is my code
``
let sum = addTwoNumbers;
function addTwoNumbers(5, 10) {
return sum;
}
console.log(sum);


### Your code so far


```javascript
const character = "#";
const count = 8;
const rows = [];

function padRow(name) {
  return name;

// User Editable Region
}
let sum = addTwoNumbers;
function addTwoNumbers(5, 10) {
  return sum;
}
console.log(sum);

// User Editable Region


const call = padRow("CamperChan");
console.log(call);


for (let i = 0; i < count; i = i + 1) {
  rows.push(character.repeat(i + 1))
}

let result = ""

for (const row of rows) {
  result = result + "\n" + row;
}

console.log(result);

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 54

Please re-read the instruction in the previous step to understand:

  • What is a function?
  • What is a function call?
  • What is parameter?
  • What is argument?

Then try again.

Hi @self.taught

Here is a function you coded earlier for this course.

The function above returns whatever is passed in the function call.

The function takes parameters, you can give them any name you like.

For this step, you need to declare two parameters, then return parameter 1 plus parameter2

The function call needs to go below the function declaration, otherwise the call is undefined.

Place it above the console.log

Make sure to add the arguments mentioned in the instructions.

Happy coding

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.