Examples 5 - Obscure Problems

[Examples]

It is possible to create a sketch that works perfectly in the PDE
but fails when exported as JavaScript.
The reason can be:
- the use of reserved JavaScript words
  (that are not reserved in Processing)
- Processing allows a variable and a function to have the same name.
  JavaScript names must be unique.