Skip to content

Latest commit

 

History

History
61 lines (40 loc) · 1.29 KB

File metadata and controls

61 lines (40 loc) · 1.29 KB

Challenge: Hello World Sample Challenge

This is a practice challenge to show you how things are set up and how to test, etc.

Instructions

Write a function called helloWorld that returns a string of 'Hello World!'.

Function Signature

/**
 * Returns a string containing 'Hello World!'.
 * @returns {string} - The string 'Hello World!'.
 */
function helloWorld(): string;

Examples

helloWorld() // 'Hello World!'

Constraints

I will put any constraints here. They will vary depending on the challenge.

  • The function must return a string

Hints

  • I will put a couple hints here. You can choose to use them or not.

Solutions

Click For Solution
function printHelloWorld() {
  return 'Hello World!';
}

Explanation

I will put the explanation to the solution here. The length and depth of the explanation will vary depending on the challenge.

Test Cases

The Jest tests will go here. They are already included in the course files. You just need to run npm test. Sometimes I will also put manual tests here.

test("Returning 'Hello, World!' as a string", () => {
  const result = helloWorld();
  expect(result).toBe('Hello World!');
});