add<T> 函数

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

对两个值执行 JavaScript 加法(+)操作。

实现

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