Overview
KB
Technical FAQ
PHP Manual
CSS2 Manual
HTML Manual
JS Guide
JS Reference
PhpDock Manual
Nu-Coder Manual
PhpExpress Manual
PHP Joomla
Development
Learn PHP
 
<StatementsOperators>
^ContentsLast updated: Fri, 18 Aug 2006


Chapter 4   Chapter 4 Comments


This chapter describes the syntax for comments, which can appear anywhere between tokens.



comment



Notations by the author to explain what a script does. Comments are ignored by the interpreter.

Implemented in  

JavaScript 1.0, NES 2.0  

ECMA version  

ECMA-262  


Syntax
// comment text
/* multiple line comment text */


Description
JavaScript supports Java-style comments:

  • Comments on a single line are preceded by a double-slash (//).

  • Comments that span multiple lines are preceded by a /* and followed by a */.

Examples
// This is a single-line comment.
/* This is a multiple-line comment. It can be of any length, and
you can put whatever you want here. */




<StatementsOperators>
^ContentsLast updated: Fri, 18 Aug 2006