タイムライン コードとドキュメント クラス コードの記述の違いを説明しようとしています。
Timeline code:
- doesn't require a package and class declaration
Document Class code:
- requires a package and class declaration
Timeline code:
- starts working on the top-most line
Document Class Code:
- starts working from the constructor function
Timeline code:
- loops, conditionals and event listeners can be **outside** of a function
Document Class Code:
- loops, conditionals and event listeners must be **inside** a function
これらは正しいですか?移行を行っている人々をつまずかせるものは他にありますか?