Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Tell us what’s happening:

This is outputting the name of the function, not quite understanding what I am doing wrong here.

Your code so far

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

function padRow(name) {
  return name;
}

// User Editable Region

const a = 5;
const b = 10;  
const sum = function addTwoNumbers(a, b){
  sum = (a + b);
} 
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 + row + "\n";
}

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/130.0.0.0 Safari/537.36 Edg/130.0.0.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

This is not valid syntax for declaring a function.

Also, this function doesn’t return anything

So would this be correct then?

let a = 5;
let b = 10;
let sum = “”;
function addTwoNumbers(a,b){
sum = a + b
console.log(sum)
}

That function does not return anything either.

It just clicked, and I got it! Thanks so much!!!

1 Like