JavaScript Language Specification by PDF

Read or Download JavaScript Language Specification PDF

Best programming: programming languages books

Get Thinking in Java (3rd Edition) (One-Off) PDF

I do not like computing device books that deal with you love a child: you want to battle through chapters and chapters earlier than the writer starts off demanding you. now not this one. TIJ reads like a talk, strikes quick and is often staggering you with attention-grabbing programming snippets. Its truly loads of enjoyable to learn and difficult to place down!

Get SCJP 100 Success Secrets: Success with The Sun Certified PDF

Addresses the pinnacle a hundred consultancy & schooling discussion board questions, with suggestions & good fortune components on investigating, comparing, reaching & capitalising on sunlight qualified Java Programmer (SCJP) IT certification.

Extra info for JavaScript Language Specification

Sample text

2 Postfix Decrement Operator -PostDecrementExpression: PostfixExpression -- A postfix expression followed by a -- operator is a postfix decrement expression. The operand must be convertible into a number, and thus the result of the operation must be a variable of type number or a run-time error occurs. The result of the postfix decrement expression is not a variable, but a value. At run time, the value 1 is subtracted from the value of the variable and the difference is stored back into the variable.

The boolean equality operators are associative as well as commutative. The result of == is true if the operands are both true or both false; otherwise the result is false. = is false if the operands are both true or both false; otherwise the result is true. = behaves the same as ^ when applied to boolean operands. 12 Bitwise and Logical Operators The bitwise and logical operators include the AND operator &, exclusive OR operator ^, and inclusive OR operator |. These operators have different precedence, with & having the highest precedence and | the lowest precedence.

1 Postfix Increment Operator ++ PostIncrementExpression: PostfixExpression ++ A postfix expression followed by a ++ operator is a postfix increment expression. The operand must be convertible into a number, and thus the result of the operation must be a variable of type number or a run-time error occurs. The result of the postfix increment expression is not a variable, but a value. At run time, the value 1 is added to the value of the variable and the sum is stored back into the variable. The value of the postfix increment expression is the value of the variable before the new value is stored.

Download PDF sample

JavaScript Language Specification


by Brian
4.3

Rated 4.79 of 5 – based on 7 votes