I noticed that some syntax is not translated.
- '.equals()' is used in processing for strings but must be '===' in JS. This is not converted.
- '.length()' is used in processing for strings but must be '.length' in JS (it's not a function).
- 'buttonPressed' from processing (the global boolean variable, not the method) should be 'buttonIsPressed' in JS
Thanks!