JavaScript syntax: Difference between revisions

Content deleted Content added
Tag: Reverted
Tag: Reverted
Line 88:
===Comments===
{{Main|Comment (computer programming)}}
[[Comment (computer programming)|Comment]] syntax is the same as in [https://jsonlinecompiler.com/javascript/javascript-comments/ JavaScript], [https://cprogrammingonline.com/c-programming/c-comments/ C], [[C++]], [[Swift (programming language)|Swift]] and many other languages.
 
<syntaxhighlight lang="javascript">
Line 99:
/* Comments /* may not be nested */ Syntax error */
</syntaxhighlight>
Try out this example code on the [[https://jsonlinecompiler.com/javascript-online-editor/ JavaScript online compiler & Editor]]. Also, consider reading the [https://jsonlinecompiler.com/javascript/javascript-comments/ comments] article on JavaScript.
 
==Variables==