FAQ: Learn Handlebars - Handlebars "Each" and "This" - Part I

This community-built FAQ covers the "Handlebars “Each” and “This” - Part I " exercise from the lesson “Learn Handlebars”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Web Development

Building Interactive JavaScript Websites

FAQs on the exercise _Handlebars “Each” and “This” - Part I _

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head here.

Looking for motivation to keep learning? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

Hmmmm. I can’t seem to figure out why the following code snippet won’t work to answer the second portion of the problem:

{{#each newArray}}

{{this}}
{{/each}}

Not sure what I am doing wrong on #2.

image

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Each Block[s]</title>
    <link href="public/style.css" type="text/css" rel="stylesheet">
    <script src="handlebars.min.js"></script>
    <!-- Add an {{each}} helper block in the <script> element below-->
    <script id="eachHelper" type="text/x-handlebars-template">
    	{{#each newArray}}
      	<div class="block">{{this}}
      {{/each}}
    </script>
  </head>
  <body>
    <h1>Each Block[s]</h1>
    <div id="display">
    </div>
    <script src="public/main.js" type="text/javascript"></script>
  </body>
</html>

Never mind, forgot something.

        </div>
2 Likes

I believe that for the content in {{this}} to be rendered as HTML, you need to incase it in an HTML element. In this lesson for instance:

Inside the {{each}} block, add a <div> element with a class attribute of "block" . The content of the <div> will be {{this}}

So like this:

 <script id="eachHelper" type="text/x-handlebars-template">
       {{#each newArray}}
        <div class='block'>{{this}}</div>
      {{/each}}
    </script>
1 Like
   {{#each newArray}}
   
    <div class='block'>{{this}}</div>
  {{/each}}

mine also doesnt work even tho its identical to the solution