add<T> 函数

T add<T>(
  1. Object? first,
  2. Object? second
)

在两个值上执行 JavaScript 加法运算 (+)。

实现

external T add<T>(Object? first, Object? second);