freeCodeCamp/curriculum/__fixtures__/english/challenge-js-comments.md

882 B

id title challengeType videoUrl forumTopicId
bd7123c8c441eddfaeb5bdef Say Hello to HTML Elements 0 https://scrimba.com/p/pVMPUv/cE8Gpt2 18276

Description

  // change code below this line

Instructions

To pass the test on this challenge, change your h1 element's text to say "Hello World".

Tests

tests:
  - text: Your <code>h1</code> element should have the text "Hello World".
    testString: assert.isTrue((/hello(\s)+world/gi).test($('h1').text()));

Challenge Seed

/* Add your code below this line */
// Add your code above this line */

Solution

<h1>Hello World</h1>