Logical operators - logical AND
You can chain multiple comparison operators using the logical AND (
&&
) operator. In the code below, result will only have the value true
if both comparison expressions evaluate to true
.Adjust the code below such that result will have the value true
.Premium
JavaScript
Console