我想用动态类型获得argumentnet。 我对Generics有所了解,但我找不到有关javascript动态类型的信息。 我希望有人可以帮助我。感谢。
public function addItem (item) : boolean {
if (!item || !item.weight) return;
if (item.weight > item.weight + inventoryWeight) return false;
items.push(item);
inventoryWeight += item.weight;
return true;
}
我需要在js中转换此代码
public class SomeClass
{
//Here is a generic method. Notice the generic
//type 'T'. This 'T' will be replaced at runtime
//with an actual type.
public T GenericMethod<T>(T param)
{
return param;
}
}