We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
  • HackerRank Home

    HackerRank

  • |
  • Prepare
  • Certify
  • Compete
  • Hiring developers?
  1. Prepare
  2. Tutorials
  3. 10 Days of Javascript
  4. Day 0: Hello, World!

Day 0: Hello, World!

Problem
Submissions
Leaderboard
Discussions
Editorial
Topics

Overview: 10 Days of JavaScript

This series focuses on learning and practicing JavaScript. Each challenge comes with a tutorial article, and you can view these articles by clicking either the Topics tab along the top or the article icon in the right-hand menu.

Objective

In this challenge, we review some basic concepts that will get you started with this series. Check out the tutorial to learn more about JavaScript's lexical structure.

Task

A greeting function is provided for you in the editor below. It has one parameter, . Perform the following tasks to complete this challenge:

  1. Use console.log() to print Hello, World! on a new line in the console, which is also known as stdout or standard output. The code for this portion of the task is already provided in the editor.
  2. Use console.log() to print the contents of (i.e., the argument passed to main).

You've got this!

Input Format

Data Type Parameter Description
string A single line of text containing one or more space-separated words.

Output Format

Print the following two lines of output:

  1. On the first line, print Hello, World! (this is provided for you in the editor).
  2. On the second line, print the contents of .

Sample Input 0

Welcome to 10 Days of JavaScript!

Sample Output 0

Hello, World!
Welcome to 10 Days of JavaScript!

Explanation 0

We printed two lines of output:

  1. We printed the literal string Hello, World! using the code provided in the editor.
  2. The value of passed to our main function in this Sample Case was Welcome to 10 Days of JavaScript!. We then passed our variable to console.log, which printed the contents of .

Author

AvmnuSng

Difficulty

Easy

Max Score

10

Submitted By

393159

Need Help?


View discussions
View editorial
View top submissions
RESOURCES

  • JavaScript Basics

rate this challenge

MORE DETAILS

Download problem statement
Download sample test cases
Suggest Edits
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy