Advertisement
sissou123

Untitled

Mar 18th, 2022
979
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. JavaScript Algorithms and Data Structures
  2. Basic JavaScript
  3. Comment Your JavaScript Code
  4. 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.
  5.  
  6. There are two ways to write comments in JavaScript:
  7.  
  8. Using // will tell JavaScript to ignore the remainder of the text on the current line. This is an in-line comment:
  9.  
  10. // This is an in-line comment.
  11. You can make a multi-line comment beginning with /* and ending with */. This is a multi-line comment:
  12.  
  13. /* This is a
  14. multi-line comment */
  15. for more:β€’ https://www.clictune.com/ex7A
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement