Question:How would you check whether the variable vRast exists or not?
A if (typeof vRast="undefined") {} B if (typeof vRast =="undefined") {} C if (vRast.defined =true) {} D if (vRast.defined ==true) {}
+ AnswerB
+ Report