instanceof 函数

bool instanceof(
  1. Object? o,
  2. Object type
)

检查 o 是否是 type 的实例。

type 中的值预期是一个表示有效 JavaScript 构造函数的 JS-interop 对象。

实现

external bool instanceof(Object? o, Object type);