Tell us what’s happening:
It’s telling me I should’t have a hard-code value and I’m struggling trying to make sense of that. If I can just have an example of a code that’s not hard-coded, that would be helpful! I don’t understand all of the lingo quite yet.
function addTwoNumbers() { return 15;
}
const sum = addTwoNumbers(5, 10);
console.log(sum);
Your code so far
const character = "#";
const count = 8;
const rows = [];
function padRow(name) {
return name;
// User Editable Region
}
function addTwoNumbers() { return 15;
}
const sum = addTwoNumbers(5, 10);
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 14816.131.5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36
Challenge Information:
Learn Introductory JavaScript by Building a Pyramid Generator - Step 55