TESTER

dict_remove

dict_remove(map, key)

Remove a key from a dictionary

Syntaxe

var pt = {x:10, y:20};
pt = dict_remove(pt, "y");

Arguments

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