instanceof.baseline 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651
  1. new Object() instanceof Object : true
  2. new Object() instanceof Function : false
  3. new Object() instanceof Array : false
  4. new Object() instanceof String : false
  5. new Object() instanceof Number : false
  6. new Object() instanceof Boolean : false
  7. new Object() instanceof Date : false
  8. new Object() instanceof RegExp : false
  9. new Object() instanceof foo : false
  10. new Object() instanceof bar : false
  11. f instanceof Object : true
  12. f instanceof Function : false
  13. f instanceof Array : false
  14. f instanceof String : false
  15. f instanceof Number : false
  16. f instanceof Boolean : false
  17. f instanceof Date : false
  18. f instanceof RegExp : false
  19. f instanceof foo : true
  20. f instanceof bar : false
  21. b instanceof Object : true
  22. b instanceof Function : false
  23. b instanceof Array : false
  24. b instanceof String : false
  25. b instanceof Number : false
  26. b instanceof Boolean : false
  27. b instanceof Date : false
  28. b instanceof RegExp : false
  29. b instanceof foo : false
  30. b instanceof bar : true
  31. foo instanceof Object : true
  32. foo instanceof Function : true
  33. foo instanceof Array : false
  34. foo instanceof String : false
  35. foo instanceof Number : false
  36. foo instanceof Boolean : false
  37. foo instanceof Date : false
  38. foo instanceof RegExp : false
  39. foo instanceof foo : false
  40. foo instanceof bar : false
  41. String.fromCharCode instanceof Object : true
  42. String.fromCharCode instanceof Function : true
  43. String.fromCharCode instanceof Array : false
  44. String.fromCharCode instanceof String : false
  45. String.fromCharCode instanceof Number : false
  46. String.fromCharCode instanceof Boolean : false
  47. String.fromCharCode instanceof Date : false
  48. String.fromCharCode instanceof RegExp : false
  49. String.fromCharCode instanceof foo : false
  50. String.fromCharCode instanceof bar : false
  51. Array.prototype.concat instanceof Object : true
  52. Array.prototype.concat instanceof Function : true
  53. Array.prototype.concat instanceof Array : false
  54. Array.prototype.concat instanceof String : false
  55. Array.prototype.concat instanceof Number : false
  56. Array.prototype.concat instanceof Boolean : false
  57. Array.prototype.concat instanceof Date : false
  58. Array.prototype.concat instanceof RegExp : false
  59. Array.prototype.concat instanceof foo : false
  60. Array.prototype.concat instanceof bar : false
  61. [1,2,3] instanceof Object : true
  62. [1,2,3] instanceof Function : false
  63. [1,2,3] instanceof Array : true
  64. [1,2,3] instanceof String : false
  65. [1,2,3] instanceof Number : false
  66. [1,2,3] instanceof Boolean : false
  67. [1,2,3] instanceof Date : false
  68. [1,2,3] instanceof RegExp : false
  69. [1,2,3] instanceof foo : false
  70. [1,2,3] instanceof bar : false
  71. new Array() instanceof Object : true
  72. new Array() instanceof Function : false
  73. new Array() instanceof Array : true
  74. new Array() instanceof String : false
  75. new Array() instanceof Number : false
  76. new Array() instanceof Boolean : false
  77. new Array() instanceof Date : false
  78. new Array() instanceof RegExp : false
  79. new Array() instanceof foo : false
  80. new Array() instanceof bar : false
  81. fncs instanceof Object : true
  82. fncs instanceof Function : false
  83. fncs instanceof Array : true
  84. fncs instanceof String : false
  85. fncs instanceof Number : false
  86. fncs instanceof Boolean : false
  87. fncs instanceof Date : false
  88. fncs instanceof RegExp : false
  89. fncs instanceof foo : false
  90. fncs instanceof bar : false
  91. 'hello' instanceof Object : false
  92. 'hello' instanceof Function : false
  93. 'hello' instanceof Array : false
  94. 'hello' instanceof String : false
  95. 'hello' instanceof Number : false
  96. 'hello' instanceof Boolean : false
  97. 'hello' instanceof Date : false
  98. 'hello' instanceof RegExp : false
  99. 'hello' instanceof foo : false
  100. 'hello' instanceof bar : false
  101. new String('world') instanceof Object : true
  102. new String('world') instanceof Function : false
  103. new String('world') instanceof Array : false
  104. new String('world') instanceof String : true
  105. new String('world') instanceof Number : false
  106. new String('world') instanceof Boolean : false
  107. new String('world') instanceof Date : false
  108. new String('world') instanceof RegExp : false
  109. new String('world') instanceof foo : false
  110. new String('world') instanceof bar : false
  111. 10 instanceof Object : false
  112. 10 instanceof Function : false
  113. 10 instanceof Array : false
  114. 10 instanceof String : false
  115. 10 instanceof Number : false
  116. 10 instanceof Boolean : false
  117. 10 instanceof Date : false
  118. 10 instanceof RegExp : false
  119. 10 instanceof foo : false
  120. 10 instanceof bar : false
  121. 10.2 instanceof Object : false
  122. 10.2 instanceof Function : false
  123. 10.2 instanceof Array : false
  124. 10.2 instanceof String : false
  125. 10.2 instanceof Number : false
  126. 10.2 instanceof Boolean : false
  127. 10.2 instanceof Date : false
  128. 10.2 instanceof RegExp : false
  129. 10.2 instanceof foo : false
  130. 10.2 instanceof bar : false
  131. NaN instanceof Object : false
  132. NaN instanceof Function : false
  133. NaN instanceof Array : false
  134. NaN instanceof String : false
  135. NaN instanceof Number : false
  136. NaN instanceof Boolean : false
  137. NaN instanceof Date : false
  138. NaN instanceof RegExp : false
  139. NaN instanceof foo : false
  140. NaN instanceof bar : false
  141. new Number(3) instanceof Object : true
  142. new Number(3) instanceof Function : false
  143. new Number(3) instanceof Array : false
  144. new Number(3) instanceof String : false
  145. new Number(3) instanceof Number : true
  146. new Number(3) instanceof Boolean : false
  147. new Number(3) instanceof Date : false
  148. new Number(3) instanceof RegExp : false
  149. new Number(3) instanceof foo : false
  150. new Number(3) instanceof bar : false
  151. true instanceof Object : false
  152. true instanceof Function : false
  153. true instanceof Array : false
  154. true instanceof String : false
  155. true instanceof Number : false
  156. true instanceof Boolean : false
  157. true instanceof Date : false
  158. true instanceof RegExp : false
  159. true instanceof foo : false
  160. true instanceof bar : false
  161. false instanceof Object : false
  162. false instanceof Function : false
  163. false instanceof Array : false
  164. false instanceof String : false
  165. false instanceof Number : false
  166. false instanceof Boolean : false
  167. false instanceof Date : false
  168. false instanceof RegExp : false
  169. false instanceof foo : false
  170. false instanceof bar : false
  171. new Boolean(true) instanceof Object : true
  172. new Boolean(true) instanceof Function : false
  173. new Boolean(true) instanceof Array : false
  174. new Boolean(true) instanceof String : false
  175. new Boolean(true) instanceof Number : false
  176. new Boolean(true) instanceof Boolean : true
  177. new Boolean(true) instanceof Date : false
  178. new Boolean(true) instanceof RegExp : false
  179. new Boolean(true) instanceof foo : false
  180. new Boolean(true) instanceof bar : false
  181. new Boolean(false) instanceof Object : true
  182. new Boolean(false) instanceof Function : false
  183. new Boolean(false) instanceof Array : false
  184. new Boolean(false) instanceof String : false
  185. new Boolean(false) instanceof Number : false
  186. new Boolean(false) instanceof Boolean : true
  187. new Boolean(false) instanceof Date : false
  188. new Boolean(false) instanceof RegExp : false
  189. new Boolean(false) instanceof foo : false
  190. new Boolean(false) instanceof bar : false
  191. new Date() instanceof Object : true
  192. new Date() instanceof Function : false
  193. new Date() instanceof Array : false
  194. new Date() instanceof String : false
  195. new Date() instanceof Number : false
  196. new Date() instanceof Boolean : false
  197. new Date() instanceof Date : true
  198. new Date() instanceof RegExp : false
  199. new Date() instanceof foo : false
  200. new Date() instanceof bar : false
  201. /a+/ instanceof Object : true
  202. /a+/ instanceof Function : false
  203. /a+/ instanceof Array : false
  204. /a+/ instanceof String : false
  205. /a+/ instanceof Number : false
  206. /a+/ instanceof Boolean : false
  207. /a+/ instanceof Date : false
  208. /a+/ instanceof RegExp : true
  209. /a+/ instanceof foo : false
  210. /a+/ instanceof bar : false
  211. Exception: new Object() instanceof new Object(). Invalid operand to 'instanceof': Function expected
  212. Exception: new Object() instanceof f. Invalid operand to 'instanceof': Function expected
  213. Exception: new Object() instanceof b. Invalid operand to 'instanceof': Function expected
  214. new Object() instanceof foo : false
  215. Exception: new Object() instanceof String.fromCharCode. Function does not have a valid prototype object
  216. Exception: new Object() instanceof Array.prototype.concat. Function does not have a valid prototype object
  217. Exception: new Object() instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  218. Exception: new Object() instanceof new Array(). Invalid operand to 'instanceof': Function expected
  219. Exception: new Object() instanceof fncs. Invalid operand to 'instanceof': Function expected
  220. Exception: new Object() instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  221. Exception: new Object() instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  222. Exception: new Object() instanceof 10. Invalid operand to 'instanceof': Function expected
  223. Exception: new Object() instanceof 10.2. Invalid operand to 'instanceof': Function expected
  224. Exception: new Object() instanceof NaN. Invalid operand to 'instanceof': Function expected
  225. Exception: new Object() instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  226. Exception: new Object() instanceof true. Invalid operand to 'instanceof': Function expected
  227. Exception: new Object() instanceof false. Invalid operand to 'instanceof': Function expected
  228. Exception: new Object() instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  229. Exception: new Object() instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  230. Exception: new Object() instanceof new Date(). Invalid operand to 'instanceof': Function expected
  231. Exception: new Object() instanceof /a+/. Invalid operand to 'instanceof': Function expected
  232. Exception: f instanceof new Object(). Invalid operand to 'instanceof': Function expected
  233. Exception: f instanceof f. Invalid operand to 'instanceof': Function expected
  234. Exception: f instanceof b. Invalid operand to 'instanceof': Function expected
  235. f instanceof foo : true
  236. Exception: f instanceof String.fromCharCode. Function does not have a valid prototype object
  237. Exception: f instanceof Array.prototype.concat. Function does not have a valid prototype object
  238. Exception: f instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  239. Exception: f instanceof new Array(). Invalid operand to 'instanceof': Function expected
  240. Exception: f instanceof fncs. Invalid operand to 'instanceof': Function expected
  241. Exception: f instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  242. Exception: f instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  243. Exception: f instanceof 10. Invalid operand to 'instanceof': Function expected
  244. Exception: f instanceof 10.2. Invalid operand to 'instanceof': Function expected
  245. Exception: f instanceof NaN. Invalid operand to 'instanceof': Function expected
  246. Exception: f instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  247. Exception: f instanceof true. Invalid operand to 'instanceof': Function expected
  248. Exception: f instanceof false. Invalid operand to 'instanceof': Function expected
  249. Exception: f instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  250. Exception: f instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  251. Exception: f instanceof new Date(). Invalid operand to 'instanceof': Function expected
  252. Exception: f instanceof /a+/. Invalid operand to 'instanceof': Function expected
  253. Exception: b instanceof new Object(). Invalid operand to 'instanceof': Function expected
  254. Exception: b instanceof f. Invalid operand to 'instanceof': Function expected
  255. Exception: b instanceof b. Invalid operand to 'instanceof': Function expected
  256. b instanceof foo : false
  257. Exception: b instanceof String.fromCharCode. Function does not have a valid prototype object
  258. Exception: b instanceof Array.prototype.concat. Function does not have a valid prototype object
  259. Exception: b instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  260. Exception: b instanceof new Array(). Invalid operand to 'instanceof': Function expected
  261. Exception: b instanceof fncs. Invalid operand to 'instanceof': Function expected
  262. Exception: b instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  263. Exception: b instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  264. Exception: b instanceof 10. Invalid operand to 'instanceof': Function expected
  265. Exception: b instanceof 10.2. Invalid operand to 'instanceof': Function expected
  266. Exception: b instanceof NaN. Invalid operand to 'instanceof': Function expected
  267. Exception: b instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  268. Exception: b instanceof true. Invalid operand to 'instanceof': Function expected
  269. Exception: b instanceof false. Invalid operand to 'instanceof': Function expected
  270. Exception: b instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  271. Exception: b instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  272. Exception: b instanceof new Date(). Invalid operand to 'instanceof': Function expected
  273. Exception: b instanceof /a+/. Invalid operand to 'instanceof': Function expected
  274. Exception: foo instanceof new Object(). Invalid operand to 'instanceof': Function expected
  275. Exception: foo instanceof f. Invalid operand to 'instanceof': Function expected
  276. Exception: foo instanceof b. Invalid operand to 'instanceof': Function expected
  277. foo instanceof foo : false
  278. Exception: foo instanceof String.fromCharCode. Function does not have a valid prototype object
  279. Exception: foo instanceof Array.prototype.concat. Function does not have a valid prototype object
  280. Exception: foo instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  281. Exception: foo instanceof new Array(). Invalid operand to 'instanceof': Function expected
  282. Exception: foo instanceof fncs. Invalid operand to 'instanceof': Function expected
  283. Exception: foo instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  284. Exception: foo instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  285. Exception: foo instanceof 10. Invalid operand to 'instanceof': Function expected
  286. Exception: foo instanceof 10.2. Invalid operand to 'instanceof': Function expected
  287. Exception: foo instanceof NaN. Invalid operand to 'instanceof': Function expected
  288. Exception: foo instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  289. Exception: foo instanceof true. Invalid operand to 'instanceof': Function expected
  290. Exception: foo instanceof false. Invalid operand to 'instanceof': Function expected
  291. Exception: foo instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  292. Exception: foo instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  293. Exception: foo instanceof new Date(). Invalid operand to 'instanceof': Function expected
  294. Exception: foo instanceof /a+/. Invalid operand to 'instanceof': Function expected
  295. Exception: String.fromCharCode instanceof new Object(). Invalid operand to 'instanceof': Function expected
  296. Exception: String.fromCharCode instanceof f. Invalid operand to 'instanceof': Function expected
  297. Exception: String.fromCharCode instanceof b. Invalid operand to 'instanceof': Function expected
  298. String.fromCharCode instanceof foo : false
  299. Exception: String.fromCharCode instanceof String.fromCharCode. Function does not have a valid prototype object
  300. Exception: String.fromCharCode instanceof Array.prototype.concat. Function does not have a valid prototype object
  301. Exception: String.fromCharCode instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  302. Exception: String.fromCharCode instanceof new Array(). Invalid operand to 'instanceof': Function expected
  303. Exception: String.fromCharCode instanceof fncs. Invalid operand to 'instanceof': Function expected
  304. Exception: String.fromCharCode instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  305. Exception: String.fromCharCode instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  306. Exception: String.fromCharCode instanceof 10. Invalid operand to 'instanceof': Function expected
  307. Exception: String.fromCharCode instanceof 10.2. Invalid operand to 'instanceof': Function expected
  308. Exception: String.fromCharCode instanceof NaN. Invalid operand to 'instanceof': Function expected
  309. Exception: String.fromCharCode instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  310. Exception: String.fromCharCode instanceof true. Invalid operand to 'instanceof': Function expected
  311. Exception: String.fromCharCode instanceof false. Invalid operand to 'instanceof': Function expected
  312. Exception: String.fromCharCode instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  313. Exception: String.fromCharCode instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  314. Exception: String.fromCharCode instanceof new Date(). Invalid operand to 'instanceof': Function expected
  315. Exception: String.fromCharCode instanceof /a+/. Invalid operand to 'instanceof': Function expected
  316. Exception: Array.prototype.concat instanceof new Object(). Invalid operand to 'instanceof': Function expected
  317. Exception: Array.prototype.concat instanceof f. Invalid operand to 'instanceof': Function expected
  318. Exception: Array.prototype.concat instanceof b. Invalid operand to 'instanceof': Function expected
  319. Array.prototype.concat instanceof foo : false
  320. Exception: Array.prototype.concat instanceof String.fromCharCode. Function does not have a valid prototype object
  321. Exception: Array.prototype.concat instanceof Array.prototype.concat. Function does not have a valid prototype object
  322. Exception: Array.prototype.concat instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  323. Exception: Array.prototype.concat instanceof new Array(). Invalid operand to 'instanceof': Function expected
  324. Exception: Array.prototype.concat instanceof fncs. Invalid operand to 'instanceof': Function expected
  325. Exception: Array.prototype.concat instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  326. Exception: Array.prototype.concat instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  327. Exception: Array.prototype.concat instanceof 10. Invalid operand to 'instanceof': Function expected
  328. Exception: Array.prototype.concat instanceof 10.2. Invalid operand to 'instanceof': Function expected
  329. Exception: Array.prototype.concat instanceof NaN. Invalid operand to 'instanceof': Function expected
  330. Exception: Array.prototype.concat instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  331. Exception: Array.prototype.concat instanceof true. Invalid operand to 'instanceof': Function expected
  332. Exception: Array.prototype.concat instanceof false. Invalid operand to 'instanceof': Function expected
  333. Exception: Array.prototype.concat instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  334. Exception: Array.prototype.concat instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  335. Exception: Array.prototype.concat instanceof new Date(). Invalid operand to 'instanceof': Function expected
  336. Exception: Array.prototype.concat instanceof /a+/. Invalid operand to 'instanceof': Function expected
  337. Exception: [1,2,3] instanceof new Object(). Invalid operand to 'instanceof': Function expected
  338. Exception: [1,2,3] instanceof f. Invalid operand to 'instanceof': Function expected
  339. Exception: [1,2,3] instanceof b. Invalid operand to 'instanceof': Function expected
  340. [1,2,3] instanceof foo : false
  341. Exception: [1,2,3] instanceof String.fromCharCode. Function does not have a valid prototype object
  342. Exception: [1,2,3] instanceof Array.prototype.concat. Function does not have a valid prototype object
  343. Exception: [1,2,3] instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  344. Exception: [1,2,3] instanceof new Array(). Invalid operand to 'instanceof': Function expected
  345. Exception: [1,2,3] instanceof fncs. Invalid operand to 'instanceof': Function expected
  346. Exception: [1,2,3] instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  347. Exception: [1,2,3] instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  348. Exception: [1,2,3] instanceof 10. Invalid operand to 'instanceof': Function expected
  349. Exception: [1,2,3] instanceof 10.2. Invalid operand to 'instanceof': Function expected
  350. Exception: [1,2,3] instanceof NaN. Invalid operand to 'instanceof': Function expected
  351. Exception: [1,2,3] instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  352. Exception: [1,2,3] instanceof true. Invalid operand to 'instanceof': Function expected
  353. Exception: [1,2,3] instanceof false. Invalid operand to 'instanceof': Function expected
  354. Exception: [1,2,3] instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  355. Exception: [1,2,3] instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  356. Exception: [1,2,3] instanceof new Date(). Invalid operand to 'instanceof': Function expected
  357. Exception: [1,2,3] instanceof /a+/. Invalid operand to 'instanceof': Function expected
  358. Exception: new Array() instanceof new Object(). Invalid operand to 'instanceof': Function expected
  359. Exception: new Array() instanceof f. Invalid operand to 'instanceof': Function expected
  360. Exception: new Array() instanceof b. Invalid operand to 'instanceof': Function expected
  361. new Array() instanceof foo : false
  362. Exception: new Array() instanceof String.fromCharCode. Function does not have a valid prototype object
  363. Exception: new Array() instanceof Array.prototype.concat. Function does not have a valid prototype object
  364. Exception: new Array() instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  365. Exception: new Array() instanceof new Array(). Invalid operand to 'instanceof': Function expected
  366. Exception: new Array() instanceof fncs. Invalid operand to 'instanceof': Function expected
  367. Exception: new Array() instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  368. Exception: new Array() instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  369. Exception: new Array() instanceof 10. Invalid operand to 'instanceof': Function expected
  370. Exception: new Array() instanceof 10.2. Invalid operand to 'instanceof': Function expected
  371. Exception: new Array() instanceof NaN. Invalid operand to 'instanceof': Function expected
  372. Exception: new Array() instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  373. Exception: new Array() instanceof true. Invalid operand to 'instanceof': Function expected
  374. Exception: new Array() instanceof false. Invalid operand to 'instanceof': Function expected
  375. Exception: new Array() instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  376. Exception: new Array() instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  377. Exception: new Array() instanceof new Date(). Invalid operand to 'instanceof': Function expected
  378. Exception: new Array() instanceof /a+/. Invalid operand to 'instanceof': Function expected
  379. Exception: fncs instanceof new Object(). Invalid operand to 'instanceof': Function expected
  380. Exception: fncs instanceof f. Invalid operand to 'instanceof': Function expected
  381. Exception: fncs instanceof b. Invalid operand to 'instanceof': Function expected
  382. fncs instanceof foo : false
  383. Exception: fncs instanceof String.fromCharCode. Function does not have a valid prototype object
  384. Exception: fncs instanceof Array.prototype.concat. Function does not have a valid prototype object
  385. Exception: fncs instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  386. Exception: fncs instanceof new Array(). Invalid operand to 'instanceof': Function expected
  387. Exception: fncs instanceof fncs. Invalid operand to 'instanceof': Function expected
  388. Exception: fncs instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  389. Exception: fncs instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  390. Exception: fncs instanceof 10. Invalid operand to 'instanceof': Function expected
  391. Exception: fncs instanceof 10.2. Invalid operand to 'instanceof': Function expected
  392. Exception: fncs instanceof NaN. Invalid operand to 'instanceof': Function expected
  393. Exception: fncs instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  394. Exception: fncs instanceof true. Invalid operand to 'instanceof': Function expected
  395. Exception: fncs instanceof false. Invalid operand to 'instanceof': Function expected
  396. Exception: fncs instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  397. Exception: fncs instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  398. Exception: fncs instanceof new Date(). Invalid operand to 'instanceof': Function expected
  399. Exception: fncs instanceof /a+/. Invalid operand to 'instanceof': Function expected
  400. Exception: 'hello' instanceof new Object(). Invalid operand to 'instanceof': Function expected
  401. Exception: 'hello' instanceof f. Invalid operand to 'instanceof': Function expected
  402. Exception: 'hello' instanceof b. Invalid operand to 'instanceof': Function expected
  403. 'hello' instanceof foo : false
  404. 'hello' instanceof String.fromCharCode : false
  405. 'hello' instanceof Array.prototype.concat : false
  406. Exception: 'hello' instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  407. Exception: 'hello' instanceof new Array(). Invalid operand to 'instanceof': Function expected
  408. Exception: 'hello' instanceof fncs. Invalid operand to 'instanceof': Function expected
  409. Exception: 'hello' instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  410. Exception: 'hello' instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  411. Exception: 'hello' instanceof 10. Invalid operand to 'instanceof': Function expected
  412. Exception: 'hello' instanceof 10.2. Invalid operand to 'instanceof': Function expected
  413. Exception: 'hello' instanceof NaN. Invalid operand to 'instanceof': Function expected
  414. Exception: 'hello' instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  415. Exception: 'hello' instanceof true. Invalid operand to 'instanceof': Function expected
  416. Exception: 'hello' instanceof false. Invalid operand to 'instanceof': Function expected
  417. Exception: 'hello' instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  418. Exception: 'hello' instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  419. Exception: 'hello' instanceof new Date(). Invalid operand to 'instanceof': Function expected
  420. Exception: 'hello' instanceof /a+/. Invalid operand to 'instanceof': Function expected
  421. Exception: new String('world') instanceof new Object(). Invalid operand to 'instanceof': Function expected
  422. Exception: new String('world') instanceof f. Invalid operand to 'instanceof': Function expected
  423. Exception: new String('world') instanceof b. Invalid operand to 'instanceof': Function expected
  424. new String('world') instanceof foo : false
  425. Exception: new String('world') instanceof String.fromCharCode. Function does not have a valid prototype object
  426. Exception: new String('world') instanceof Array.prototype.concat. Function does not have a valid prototype object
  427. Exception: new String('world') instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  428. Exception: new String('world') instanceof new Array(). Invalid operand to 'instanceof': Function expected
  429. Exception: new String('world') instanceof fncs. Invalid operand to 'instanceof': Function expected
  430. Exception: new String('world') instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  431. Exception: new String('world') instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  432. Exception: new String('world') instanceof 10. Invalid operand to 'instanceof': Function expected
  433. Exception: new String('world') instanceof 10.2. Invalid operand to 'instanceof': Function expected
  434. Exception: new String('world') instanceof NaN. Invalid operand to 'instanceof': Function expected
  435. Exception: new String('world') instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  436. Exception: new String('world') instanceof true. Invalid operand to 'instanceof': Function expected
  437. Exception: new String('world') instanceof false. Invalid operand to 'instanceof': Function expected
  438. Exception: new String('world') instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  439. Exception: new String('world') instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  440. Exception: new String('world') instanceof new Date(). Invalid operand to 'instanceof': Function expected
  441. Exception: new String('world') instanceof /a+/. Invalid operand to 'instanceof': Function expected
  442. Exception: 10 instanceof new Object(). Invalid operand to 'instanceof': Function expected
  443. Exception: 10 instanceof f. Invalid operand to 'instanceof': Function expected
  444. Exception: 10 instanceof b. Invalid operand to 'instanceof': Function expected
  445. 10 instanceof foo : false
  446. 10 instanceof String.fromCharCode : false
  447. 10 instanceof Array.prototype.concat : false
  448. Exception: 10 instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  449. Exception: 10 instanceof new Array(). Invalid operand to 'instanceof': Function expected
  450. Exception: 10 instanceof fncs. Invalid operand to 'instanceof': Function expected
  451. Exception: 10 instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  452. Exception: 10 instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  453. Exception: 10 instanceof 10. Invalid operand to 'instanceof': Function expected
  454. Exception: 10 instanceof 10.2. Invalid operand to 'instanceof': Function expected
  455. Exception: 10 instanceof NaN. Invalid operand to 'instanceof': Function expected
  456. Exception: 10 instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  457. Exception: 10 instanceof true. Invalid operand to 'instanceof': Function expected
  458. Exception: 10 instanceof false. Invalid operand to 'instanceof': Function expected
  459. Exception: 10 instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  460. Exception: 10 instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  461. Exception: 10 instanceof new Date(). Invalid operand to 'instanceof': Function expected
  462. Exception: 10 instanceof /a+/. Invalid operand to 'instanceof': Function expected
  463. Exception: 10.2 instanceof new Object(). Invalid operand to 'instanceof': Function expected
  464. Exception: 10.2 instanceof f. Invalid operand to 'instanceof': Function expected
  465. Exception: 10.2 instanceof b. Invalid operand to 'instanceof': Function expected
  466. 10.2 instanceof foo : false
  467. 10.2 instanceof String.fromCharCode : false
  468. 10.2 instanceof Array.prototype.concat : false
  469. Exception: 10.2 instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  470. Exception: 10.2 instanceof new Array(). Invalid operand to 'instanceof': Function expected
  471. Exception: 10.2 instanceof fncs. Invalid operand to 'instanceof': Function expected
  472. Exception: 10.2 instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  473. Exception: 10.2 instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  474. Exception: 10.2 instanceof 10. Invalid operand to 'instanceof': Function expected
  475. Exception: 10.2 instanceof 10.2. Invalid operand to 'instanceof': Function expected
  476. Exception: 10.2 instanceof NaN. Invalid operand to 'instanceof': Function expected
  477. Exception: 10.2 instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  478. Exception: 10.2 instanceof true. Invalid operand to 'instanceof': Function expected
  479. Exception: 10.2 instanceof false. Invalid operand to 'instanceof': Function expected
  480. Exception: 10.2 instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  481. Exception: 10.2 instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  482. Exception: 10.2 instanceof new Date(). Invalid operand to 'instanceof': Function expected
  483. Exception: 10.2 instanceof /a+/. Invalid operand to 'instanceof': Function expected
  484. Exception: NaN instanceof new Object(). Invalid operand to 'instanceof': Function expected
  485. Exception: NaN instanceof f. Invalid operand to 'instanceof': Function expected
  486. Exception: NaN instanceof b. Invalid operand to 'instanceof': Function expected
  487. NaN instanceof foo : false
  488. NaN instanceof String.fromCharCode : false
  489. NaN instanceof Array.prototype.concat : false
  490. Exception: NaN instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  491. Exception: NaN instanceof new Array(). Invalid operand to 'instanceof': Function expected
  492. Exception: NaN instanceof fncs. Invalid operand to 'instanceof': Function expected
  493. Exception: NaN instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  494. Exception: NaN instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  495. Exception: NaN instanceof 10. Invalid operand to 'instanceof': Function expected
  496. Exception: NaN instanceof 10.2. Invalid operand to 'instanceof': Function expected
  497. Exception: NaN instanceof NaN. Invalid operand to 'instanceof': Function expected
  498. Exception: NaN instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  499. Exception: NaN instanceof true. Invalid operand to 'instanceof': Function expected
  500. Exception: NaN instanceof false. Invalid operand to 'instanceof': Function expected
  501. Exception: NaN instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  502. Exception: NaN instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  503. Exception: NaN instanceof new Date(). Invalid operand to 'instanceof': Function expected
  504. Exception: NaN instanceof /a+/. Invalid operand to 'instanceof': Function expected
  505. Exception: new Number(3) instanceof new Object(). Invalid operand to 'instanceof': Function expected
  506. Exception: new Number(3) instanceof f. Invalid operand to 'instanceof': Function expected
  507. Exception: new Number(3) instanceof b. Invalid operand to 'instanceof': Function expected
  508. new Number(3) instanceof foo : false
  509. Exception: new Number(3) instanceof String.fromCharCode. Function does not have a valid prototype object
  510. Exception: new Number(3) instanceof Array.prototype.concat. Function does not have a valid prototype object
  511. Exception: new Number(3) instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  512. Exception: new Number(3) instanceof new Array(). Invalid operand to 'instanceof': Function expected
  513. Exception: new Number(3) instanceof fncs. Invalid operand to 'instanceof': Function expected
  514. Exception: new Number(3) instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  515. Exception: new Number(3) instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  516. Exception: new Number(3) instanceof 10. Invalid operand to 'instanceof': Function expected
  517. Exception: new Number(3) instanceof 10.2. Invalid operand to 'instanceof': Function expected
  518. Exception: new Number(3) instanceof NaN. Invalid operand to 'instanceof': Function expected
  519. Exception: new Number(3) instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  520. Exception: new Number(3) instanceof true. Invalid operand to 'instanceof': Function expected
  521. Exception: new Number(3) instanceof false. Invalid operand to 'instanceof': Function expected
  522. Exception: new Number(3) instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  523. Exception: new Number(3) instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  524. Exception: new Number(3) instanceof new Date(). Invalid operand to 'instanceof': Function expected
  525. Exception: new Number(3) instanceof /a+/. Invalid operand to 'instanceof': Function expected
  526. Exception: true instanceof new Object(). Invalid operand to 'instanceof': Function expected
  527. Exception: true instanceof f. Invalid operand to 'instanceof': Function expected
  528. Exception: true instanceof b. Invalid operand to 'instanceof': Function expected
  529. true instanceof foo : false
  530. true instanceof String.fromCharCode : false
  531. true instanceof Array.prototype.concat : false
  532. Exception: true instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  533. Exception: true instanceof new Array(). Invalid operand to 'instanceof': Function expected
  534. Exception: true instanceof fncs. Invalid operand to 'instanceof': Function expected
  535. Exception: true instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  536. Exception: true instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  537. Exception: true instanceof 10. Invalid operand to 'instanceof': Function expected
  538. Exception: true instanceof 10.2. Invalid operand to 'instanceof': Function expected
  539. Exception: true instanceof NaN. Invalid operand to 'instanceof': Function expected
  540. Exception: true instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  541. Exception: true instanceof true. Invalid operand to 'instanceof': Function expected
  542. Exception: true instanceof false. Invalid operand to 'instanceof': Function expected
  543. Exception: true instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  544. Exception: true instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  545. Exception: true instanceof new Date(). Invalid operand to 'instanceof': Function expected
  546. Exception: true instanceof /a+/. Invalid operand to 'instanceof': Function expected
  547. Exception: false instanceof new Object(). Invalid operand to 'instanceof': Function expected
  548. Exception: false instanceof f. Invalid operand to 'instanceof': Function expected
  549. Exception: false instanceof b. Invalid operand to 'instanceof': Function expected
  550. false instanceof foo : false
  551. false instanceof String.fromCharCode : false
  552. false instanceof Array.prototype.concat : false
  553. Exception: false instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  554. Exception: false instanceof new Array(). Invalid operand to 'instanceof': Function expected
  555. Exception: false instanceof fncs. Invalid operand to 'instanceof': Function expected
  556. Exception: false instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  557. Exception: false instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  558. Exception: false instanceof 10. Invalid operand to 'instanceof': Function expected
  559. Exception: false instanceof 10.2. Invalid operand to 'instanceof': Function expected
  560. Exception: false instanceof NaN. Invalid operand to 'instanceof': Function expected
  561. Exception: false instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  562. Exception: false instanceof true. Invalid operand to 'instanceof': Function expected
  563. Exception: false instanceof false. Invalid operand to 'instanceof': Function expected
  564. Exception: false instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  565. Exception: false instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  566. Exception: false instanceof new Date(). Invalid operand to 'instanceof': Function expected
  567. Exception: false instanceof /a+/. Invalid operand to 'instanceof': Function expected
  568. Exception: new Boolean(true) instanceof new Object(). Invalid operand to 'instanceof': Function expected
  569. Exception: new Boolean(true) instanceof f. Invalid operand to 'instanceof': Function expected
  570. Exception: new Boolean(true) instanceof b. Invalid operand to 'instanceof': Function expected
  571. new Boolean(true) instanceof foo : false
  572. Exception: new Boolean(true) instanceof String.fromCharCode. Function does not have a valid prototype object
  573. Exception: new Boolean(true) instanceof Array.prototype.concat. Function does not have a valid prototype object
  574. Exception: new Boolean(true) instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  575. Exception: new Boolean(true) instanceof new Array(). Invalid operand to 'instanceof': Function expected
  576. Exception: new Boolean(true) instanceof fncs. Invalid operand to 'instanceof': Function expected
  577. Exception: new Boolean(true) instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  578. Exception: new Boolean(true) instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  579. Exception: new Boolean(true) instanceof 10. Invalid operand to 'instanceof': Function expected
  580. Exception: new Boolean(true) instanceof 10.2. Invalid operand to 'instanceof': Function expected
  581. Exception: new Boolean(true) instanceof NaN. Invalid operand to 'instanceof': Function expected
  582. Exception: new Boolean(true) instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  583. Exception: new Boolean(true) instanceof true. Invalid operand to 'instanceof': Function expected
  584. Exception: new Boolean(true) instanceof false. Invalid operand to 'instanceof': Function expected
  585. Exception: new Boolean(true) instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  586. Exception: new Boolean(true) instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  587. Exception: new Boolean(true) instanceof new Date(). Invalid operand to 'instanceof': Function expected
  588. Exception: new Boolean(true) instanceof /a+/. Invalid operand to 'instanceof': Function expected
  589. Exception: new Boolean(false) instanceof new Object(). Invalid operand to 'instanceof': Function expected
  590. Exception: new Boolean(false) instanceof f. Invalid operand to 'instanceof': Function expected
  591. Exception: new Boolean(false) instanceof b. Invalid operand to 'instanceof': Function expected
  592. new Boolean(false) instanceof foo : false
  593. Exception: new Boolean(false) instanceof String.fromCharCode. Function does not have a valid prototype object
  594. Exception: new Boolean(false) instanceof Array.prototype.concat. Function does not have a valid prototype object
  595. Exception: new Boolean(false) instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  596. Exception: new Boolean(false) instanceof new Array(). Invalid operand to 'instanceof': Function expected
  597. Exception: new Boolean(false) instanceof fncs. Invalid operand to 'instanceof': Function expected
  598. Exception: new Boolean(false) instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  599. Exception: new Boolean(false) instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  600. Exception: new Boolean(false) instanceof 10. Invalid operand to 'instanceof': Function expected
  601. Exception: new Boolean(false) instanceof 10.2. Invalid operand to 'instanceof': Function expected
  602. Exception: new Boolean(false) instanceof NaN. Invalid operand to 'instanceof': Function expected
  603. Exception: new Boolean(false) instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  604. Exception: new Boolean(false) instanceof true. Invalid operand to 'instanceof': Function expected
  605. Exception: new Boolean(false) instanceof false. Invalid operand to 'instanceof': Function expected
  606. Exception: new Boolean(false) instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  607. Exception: new Boolean(false) instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  608. Exception: new Boolean(false) instanceof new Date(). Invalid operand to 'instanceof': Function expected
  609. Exception: new Boolean(false) instanceof /a+/. Invalid operand to 'instanceof': Function expected
  610. Exception: new Date() instanceof new Object(). Invalid operand to 'instanceof': Function expected
  611. Exception: new Date() instanceof f. Invalid operand to 'instanceof': Function expected
  612. Exception: new Date() instanceof b. Invalid operand to 'instanceof': Function expected
  613. new Date() instanceof foo : false
  614. Exception: new Date() instanceof String.fromCharCode. Function does not have a valid prototype object
  615. Exception: new Date() instanceof Array.prototype.concat. Function does not have a valid prototype object
  616. Exception: new Date() instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  617. Exception: new Date() instanceof new Array(). Invalid operand to 'instanceof': Function expected
  618. Exception: new Date() instanceof fncs. Invalid operand to 'instanceof': Function expected
  619. Exception: new Date() instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  620. Exception: new Date() instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  621. Exception: new Date() instanceof 10. Invalid operand to 'instanceof': Function expected
  622. Exception: new Date() instanceof 10.2. Invalid operand to 'instanceof': Function expected
  623. Exception: new Date() instanceof NaN. Invalid operand to 'instanceof': Function expected
  624. Exception: new Date() instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  625. Exception: new Date() instanceof true. Invalid operand to 'instanceof': Function expected
  626. Exception: new Date() instanceof false. Invalid operand to 'instanceof': Function expected
  627. Exception: new Date() instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  628. Exception: new Date() instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  629. Exception: new Date() instanceof new Date(). Invalid operand to 'instanceof': Function expected
  630. Exception: new Date() instanceof /a+/. Invalid operand to 'instanceof': Function expected
  631. Exception: /a+/ instanceof new Object(). Invalid operand to 'instanceof': Function expected
  632. Exception: /a+/ instanceof f. Invalid operand to 'instanceof': Function expected
  633. Exception: /a+/ instanceof b. Invalid operand to 'instanceof': Function expected
  634. /a+/ instanceof foo : false
  635. Exception: /a+/ instanceof String.fromCharCode. Function does not have a valid prototype object
  636. Exception: /a+/ instanceof Array.prototype.concat. Function does not have a valid prototype object
  637. Exception: /a+/ instanceof [1,2,3]. Invalid operand to 'instanceof': Function expected
  638. Exception: /a+/ instanceof new Array(). Invalid operand to 'instanceof': Function expected
  639. Exception: /a+/ instanceof fncs. Invalid operand to 'instanceof': Function expected
  640. Exception: /a+/ instanceof 'hello'. Invalid operand to 'instanceof': Function expected
  641. Exception: /a+/ instanceof new String('world'). Invalid operand to 'instanceof': Function expected
  642. Exception: /a+/ instanceof 10. Invalid operand to 'instanceof': Function expected
  643. Exception: /a+/ instanceof 10.2. Invalid operand to 'instanceof': Function expected
  644. Exception: /a+/ instanceof NaN. Invalid operand to 'instanceof': Function expected
  645. Exception: /a+/ instanceof new Number(3). Invalid operand to 'instanceof': Function expected
  646. Exception: /a+/ instanceof true. Invalid operand to 'instanceof': Function expected
  647. Exception: /a+/ instanceof false. Invalid operand to 'instanceof': Function expected
  648. Exception: /a+/ instanceof new Boolean(true). Invalid operand to 'instanceof': Function expected
  649. Exception: /a+/ instanceof new Boolean(false). Invalid operand to 'instanceof': Function expected
  650. Exception: /a+/ instanceof new Date(). Invalid operand to 'instanceof': Function expected
  651. Exception: /a+/ instanceof /a+/. Invalid operand to 'instanceof': Function expected