fork download
  1.  
  2. // Add your code here
  3.  
  4. let quoteStart = 'Don\'t judge each day by the harvest you reap ';
  5. let quoteEnd = 'but by the Seeds that you Plant';
  6. let finalQuote = quoteStart + quoteEnd;
  7.  
  8. // Don't edit the code below here!
  9.  
  10. section.innerHTML = ' ';
  11. let para1 = document.createElement('p');
  12. para1.textContent = finalQuote;
  13.  
  14. section.appendChild(para1);
  15.  
Runtime error #stdin #stdout #stderr 0.03s 17020KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
prog.js:10:1 ReferenceError: section is not defined
Stack:
  @prog.js:10:1