hw_22_02 .html 332 B

123456789101112131415161718192021222324252627282930
  1. <head>
  2. 01 to ES6
  3. </head>
  4. <body>
  5. <script>
  6. class Store {
  7. #reducer;
  8. #state;
  9. #cbs = []
  10. constructor() {
  11. }
  12. getState() {
  13. }
  14. subscribe() {
  15. }
  16. dispatch() {
  17. }
  18. }
  19. </script>
  20. </body>