Tell us what’s happening:
INTENTO RESOLVER Y NO ME TOMA EL CODIGO, LO SUPERVISE.
Below the return statement, log the string “This works!” to the console.After doing that, you will see that the string “This works!” does not display in the console, and the console.log(“This works!”) line is greyed out.Copy the console log and paste it above the return statement. Now, the string “This works!” should appear in the console.An important thing to know about the return keyword is that it does not just define a value to be retur
Your code so far
// User Editable Region
function padRow(name) {
console.log("This works!");
return "Testing";
console.log("This works!");
}
padRow("Your Name");
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36
Challenge Information:
Learn Introductory JavaScript by Building a Pyramid Generator - Step 60