Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Lesson 04: Comments

Notes for humans, ignored by the engine.

What you'll learn

  • single-line: // like this
  • multi-line: /* like this */
  • JSDoc: /** ... */ documents functions and is read by tooling
  • don't over-comment obvious code — explain WHY, not WHAT

Example

See examples/.

Exercise

Add a JSDoc block to a function you wrote earlier.