-
Notifications
You must be signed in to change notification settings - Fork 0
Dictionary
Malexion edited this page Nov 7, 2016
·
1 revision
Object map with syntactic sugar.
var dictionary = new __.lib.Dictionary();
dictionary.add('foo', 'bar');
dictionary['fish'] = 'stix';
console.log(dictionary.containsKey('foo'));
console.log(dictionary.containsValue('stix'));
dictionary.remove('foo');
dictionary.containsKey('foo');
console.log(dictionary);
dictionary.clear();