arrayProxyClassGet
Generic types: | P C |
Implementation of the get method for the ArrayProxy class.
Presentation
function arrayProxyClassGet (
target: ArrayProxy <P, C>,
prop: string | symbol,
): unknown;
Returns
unknown
-The value of the property.
Parameters
Name | Type | Description |
---|---|---|
target |
| The target of the get method which is the ArrayProxy class itself. |
prop | string | symbol | prop The property to get from the target. |