LoginSignup
0
0

More than 5 years have passed since last update.

Basic JavaScript FCC barkinet

Posted at

Menulearn to code javascript at Free Code Camp logo
Comment your JavaScript Code
Comments are lines of code that JavaScript will intentionally ignore. Comments are a great way to leave notes to yourself and to other people who will later need to figure out what that code does.

There are two ways to write comments in JavaScript:

Using // will tell JavaScript to ignore the remainder of the text on the current line:

// This is an in-line comment.
You can make a multi-line comment beginning with /* and ending with */:

/* This is a
multi-line comment */
Best Practice
As you write code, you should regularly add comments to clarify the function of parts of your code. Good commenting can help communicate the intent of your code—both for others and for your future self.

Instructions
Try creating one of each type of comment.

Run tests (ctrl + enter)
Reset Help Bug
/**
* Your output will go here.
* Any console.log() -type
* statements will appear in
* your browser's DevTools
* JavaScript console as well.
*/

Create a // style comment that contains at least five letters.
Create a /* */ style comment that contains at least five letters.
Make sure that you close the comment with a */.

1

2
// This is an in-line comment.
3
/* This is a
4
multi-line comment */
5

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0