Pg 320 : 11.5.2

Date: 2019-03-27
Status: Fixed
Fixedinbuild:
17
Old Text:
if( ! x instanceof X ) return false;
New Text:
if( ! (x instanceof X) ) return false;
Comments:
x instanceof X should be in brackets
Reportedby:
OCAJ01

 Back