Set Get Delete

Results

Setup


const key = UNIQUE_KEYS[0];
const value = VALUES[0];

Test


            map.set(key, value);
            if (!map.get(key)) {
                throw `${key} does not exist`;
            }
            map.delete(key);