These pages are installed locally in .../edu.media.mit.Scratch2Editor/Local Store/en
, so this list is just a list of subfolders and files in that folder.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class FizzBuzz { | |
constructor() { | |
const counter = new Counter(); | |
const looper = new Looper(); | |
const counterBoundsChecker = new CounterBoundsChecker(counter, 101); | |
const fizzBuzzMainLoop = new FizzBuzzMainLoop(counter); | |
looper.doWhile(counterBoundsChecker, fizzBuzzMainLoop); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// I don't know where this is initially from - this is just way easier to find than searching for a forum post that | |
// contains this :P | |
document.querySelector("#app")._reactRootContainer._internalRoot.current.child.stateNode.store.getState() |