Assignments
When assigning a value to a variable, use parentheses around a
right-side expression that contains a comparison.
// Good
var flag = (i < count);
// Bad: Missing parentheses
var flag = i < count;
You are currently reading a PREVIEW of this book.
Get instant access to over
$1 million worth of books and videos.
Start a Free Trial