Work with dynamic data

Tell us what’s happening:

Your code so far


<body>
  <script>
    const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];

    d3.select("body").selectAll("h2")
      .data(dataset)
      .enter()
      .append("h2")
      // Add your code below this line

      .text((d) => d + "USD");

      // Add your code above this line
  </script>
</body>


Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:76.0) Gecko/20100101 Firefox/76.0.

Challenge: Work with Dynamic Data in D3

Link to the challenge:

This ought to work. But it says I;m wrong!

remember you need a space between the number and USD

1 Like

I got it. Thank you!

1 Like