StructInsert
Method Signature
StructInsert(struct=[modifiableStruct], key=[any], value=[any], overwrite=[boolean])Arguments
Argument
Type
Required
Description
Default
Examples
Simple Example
map = {
"hair" : "brown",
"eyes" : "green"
};
structInsert( map, "lips", "red" );
writeOutput( structKeyList( map ) );
Overwrite Example
Additional Examples
Related
Last updated
Was this helpful?
