Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

comment out in javascript

<script type="text/javascript">
<!--
document.write("I have multi-line comments!");
/*document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");*/
//-->
</script>

Comment

javascript comment

You can use double slash //for single line of code

//console.log("Hello world!")

If you want to comment out multiple lines of code here is the two ways.

First: everything between /**/

/*
console.log("Hello world1!")
console.log("Hello world2!")
console.log("Hello world3!")
*/

Second: select all lines, which you want to comment out and use:
ctrl+k+c //to comment out
ctrl+k+u //to uncomment 

//console.log("Hello world1!")
//console.log("Hello world2!")
//console.log("Hello world3!")
Comment

javascript comments

// Comment

/*	
Also a
Comment 
*/
Comment

js comment

/*
The code below will change
the heading with id = "myH"
and the paragraph with id = "myP"
in my web page:
*/
document.getElementById("myH").innerHTML = "My First Page";
document.getElementById("myP").innerHTML = "My first paragraph.";

let x = 5;      // Declare x, give it the value of 5
let y = x + 2;  // Declare y, give it the value of x + 2


// Change heading:
document.getElementById("myH").innerHTML = "My First Page";

// Change paragraph:
document.getElementById("myP").innerHTML = "My first paragraph.";
Comment

comment out in javascript

<script type="text/javascript">
<!--
// This is a single line JavaScript comment

document.write("I have comments in my JavaScript code!");
//document.write("You can't see this!");
//-->
</script>

Comment

comments js

//Single line

/*
Multiple line
*/
Comment

Javascript comment

//I'm a single line comment

/* I'm comment on
*  more then one line.
*/ 
Comment

comment in JavaScript

// This is how you comment a single line in JavaScript

/*
This is how you comment
multiple lines in 
JavaScript
*/
Comment

Javascript Comments

//Single line comments with 2 forward slashes
/*
	Multi-line comments 
    with start and closing comment symbol
*/


//You can also use comments for Functions,Classes and Class Methods.
/*
  Function/Class methods comments will display the comment to developers.
  Displays comment when hovering over the function/method name.
  Might also display comment with intellisense feature.
  Should work in most IDE with intellisense for language in use.
  May need to install and set correct intellisense for language in use.
  To be placed at top of functions, classes or class methods.
*/

//EXPLANATION 
/**
 * Function/Class/Class-method Description 
 ** Double asterisk adds list items
 ** You can add url for online resources just type url
 ** there as several @ options see https://jsdoc.app/ for list and description
 ** data-type is best typed in caps
 ** intellisense may color code data-type typed in caps
 ** Format of @options below
 * @option | {data-type} | parameter-name | description
 * @return-option | {data-type} | description
*/

//IMPLEMENTATION EXAMPLE (Use example then call the function to see how it works)
/**
 * Alerts a message to user
 ** Note: doesn't display title
 ** https://jsdoc.app
 * @param {STRING} message Message to user
 * @param {STRING} username This is username
 * @param {NUMBER} age Age of User
 * @returns {BOOLEAN} Boolean
*/
function AlertSomething(message,username,age){
    alert(message + username + " . You are " + age + " years old");
    return true;
}

AlertSomething("Hello ", "Alice", 25);
Comment

comment in js

//this is a comment

/*
this
is
a
multiline
comment
*/
Comment

js comment

/* text*/
Comment

Which symbol is used for comments in Javascript?

// Which symbol is used for comments in Javascript?
// for Single line comments and

/* Multi
Line
Comment
*/
Comment

comments in js

// comment sigle line
Comment

javascript comment syntax

// single-line comment

/*
Comment with
multiple lines
*/
Comment

how to add comment in javascript

/*It is easy and important so keep going and enjoy the way to coding
still notr getting it then try follow me*/
// Single line comment is only for one line and multiline for two
// It is a good way to keep notice of your codes
/*Code*/
Comment

comment in javascript

// javascript comment
Comment

javascript comment

//short comment

//loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong comment

/*
multiple
line
comment
*/

//Comments won't be shown on the page or effect the code but will remain in website code. Useful for commenting what is the code for
Comment

javascript comment

let x = 5;      // Declare x, give it the value of 5
let y = x + 2;  // Declare y, give it the value of x + 2
Comment

commenting in javascript

//import Navbar from "./components/Navbar"
Comment

how to comment in javascript

/* hello ram
Hello, Bharat */
Comment

js comment

//A single line comment, also known as an end of line comment.

/*This is a longer 
  multiline comment.
*/

var str /*Multiline comments can be added almost anywhere!*/ = "foo";
Comment

js comments

<h1>lolllll</h1>
Comment

PREVIOUS NEXT
Code Example
Javascript :: How to Check if a Substring is in a String in JavaScript Using the includes() Method 
Javascript :: transform date to relative date js 
Javascript :: js get datatable attr value on click 
Javascript :: send multipart form data axios with node js 
Javascript :: libuv nodejs 
Javascript :: chess game in javascript github 
Javascript :: react context api 
Javascript :: how to import scss file in angular 
Javascript :: JavaScript throw with try...catch 
Javascript :: kendo grid toolbar custom button click event jquery 
Javascript :: js class private 
Javascript :: why did you render 
Javascript :: trim string in javascript 
Javascript :: print an object in javascript 
Javascript :: how to return argument in javascript 
Javascript :: tinymce return text and html 
Javascript :: quiz javascript example with array 
Javascript :: superagent set cookie 
Javascript :: overflowx javascript 
Javascript :: run javascript in iframe 
Javascript :: react recoil 
Javascript :: alertify js vue 
Javascript :: js commenst 
Javascript :: load.json 
Javascript :: check if array contain the all element javascript 
Javascript :: 2d array includes array js 
Javascript :: mongoose select 
Javascript :: datatable on change event jquery 
Javascript :: database in javascript 
Javascript :: javascript focus on contenteditable not working 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =