Tell us what’s happening:
Output: . Your first console.log should come after your return keyword.
Your second console.log should come before your return keyword.
Your code so far
function padRow(name) {
const test = “Testing”;
console.log(‘This Works!’);
return test;
console.log(‘This Works!’);
}
Challenge Information:
Learn Introductory JavaScript by Building a Pyramid Generator - Step 60