下面哪个语句可以在JS里判断一个对象oStringObject是否为String。
oStringObject instanceof String
typeof oStringObject == 'string'
oStringObject is String
其他答案都不正确