dict_remove
Remove a key from a dictionary
dict_remove(
map,
key
)
Remove a key from a dictionary
Syntaxe
var pt = {x:10, y:20};
pt = dict_remove(pt, "y");
Arguments
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
map | yes | - | The map to remove key from | |
key | yes | - | Key to remove (string) |