<!DOCTYE html>function dictionary(){//Define an object for a dictionary typevar _obj = new Object();//Check whether a certain key contained or notthis.containsKey = function(k){var isContained = false;for(var attr in _obj){if(attr == k){isContained = true;break;}}return isContained;}//Add a new elementthis.addElement = function(k,v){if(!this.containsKey(k)){_obj[k] = v;}}//Remove an existing elementthis.removeElement = function(k){if(this.containsKey(k)){delete _obj[k];}}//Print the resultthis.printAll = function(){var result = JSON.stringify(_obj);return result;}}var newD = new dictionary();