Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Tell us what’s happening:

is this a syntax error, keeping getting “sum not defined”?

Your code so far

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

function padRow(name) {
  return name;
}

// User Editable Region

function addTwoNumbers(one,two){

  const sum = addTwoNumbers(5,10);
  return one + two;
}

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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Hi there! This line should not be in the body of the function

4 Likes

Hi there!
You need to add the the above declaration and assignment after your function.

2 Likes

thank you, solved it now

2 Likes

appreciate the help, thanks

1 Like

Awesome work very helpfull

1 Like