PLAYGROUND (experimental)

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

NameTypeRequiredDefaultDescription
mapyes-The map to remove key from
keyyes-Key to remove (string)