Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is a number of syntax extensions. The most important one are the XML literals (see section 11.1.4 and 11.1.5):
The example above shows the special case of an empty root tag and JavaScript expressions in XML code.
You also have some expressions that aren’t valid in ECMA-262 (see section 11.2):
There are namespaces (see section 11.1.2):
There is the default XML namespace statement which is syntactically a very unusual construct (see section 12.1):
Finally, there is the
for each .. inloop which is similar tofor .. in(see section 12.3):As far as I know these are all the syntax differences – but you’ve probably got more than enough already.