October 2018
Intermediate to advanced
370 pages
9h 15m
English
The and (&&) operator is used for absolute results. The and operator returns true if and only if all conditions grouped together are satisfied. In the event that either conditions fail to satisfy the grouped condition, the if statement will fail and the respective code block will be ignored until the grouped condition is satisfied as a whole.
An if statement with an && operator can be written in ampersand form:
var studentMarks = 92if (studentMarks >= 90 && value < 96) { println ("A") }
The and operator can also be written in word form:
if ((studentMarks >= 90) and (value < 96)) { println ("A")}
Read now
Unlock full access