Computer Science, asked by siratunnehahussain12, 1 year ago

Explain the two types of comments in javascript ?

Answers

Answered by Anonymous
5

Hi

There are two types of comments in JavaScript..

1. Single line comments

We can make single line comment using //

for example: // This is an example of single line comment

2. Multiple line

Multiple lines comment allows you to add line breaks in comments

we can make multiple line comments using /* */

for example: /* This is an example of

multiple lines comment

I can add line breaks in it.

*/

Similar questions