Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is this?

This is a collection of questions that come up every now and then about syntax in JavaScript. This is also a Community Wiki, so everyone is invited to participate in maintaining this list.

Why is this?

Stack Overflow does not allow searching for particular characters. As a consequence, many questions about operators and other syntax tokens are not found easily when searching for them. This also makes closing duplicates more difficult. The list below is to help with this issue.

The main idea is to have links to existing questions on Stack Overflow, so it's easier for us to reference them, not to copy over content from the ECMAScript Spec.

Additionally, this is a blatant copy of the PHP symbol reference. We needed a JS one.


Please help. Edit and add links to other operators/syntax references, or if you can't find good questions/answers on a particular piece of syntax, add an answer to this question and link it

share|improve this question
6  
The javascript tag info page takes care of this to some degree. May be worth enhancing it with your links. – squint Mar 3 '12 at 20:58
@amnotiam yes, except it doesn't specifically address syntax. That was the idea here. – Thomas Shields Mar 3 '12 at 21:00
Yes, that's why I suggested enhancing it with the info you provided. I do see merit in having it available as an CW question/answer for easy dupe reference. – squint Mar 3 '12 at 21:01
1  
@David Thomas: Unfortunately, tag wikis still suck. This is why even the book question remains a question today. – BoltClock Mar 3 '12 at 21:44
3  
I wonder how diligent the close voters are about also closing dupes. – squint Mar 3 '12 at 21:47
show 16 more comments

closed as not a real question by Daniel A. White, Andy E, Marvin Pinto, Perception, cHao Mar 4 '12 at 7:35

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 9 down vote accepted

MDN reference on operators

The List

== Equality Operator


=== Equality Operator


!= Inequality Operator


!== Inequality Operator


&&, ||, ! Logical Operators


!! Logical Operator


, Comma Operator


var x = function() vs function x() Function Declaration Syntax


(function(){...})() IIFE (Immediately Invoked Function Expression)


| & ^ Bitwise OR, AND, & XOR operators


<< >> Bit shift operators


[], Array() Array Notation

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.