var table1 = microStorage('table1');
                table1('name', 'John Smith');
                var table2 = microStorage('table2');
                table2('age', 20);
                var table3 = microStorage('table3');
                table3('sport', ['table tennis', 'swim']);
                table3('game', ['lol', 'overwatch']);

                table1('name'); // John Smith
                table2.list(); // ['age']
            
        

Please open DevTools and try it out for yourself. 😇