Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 624 Bytes

README.md

File metadata and controls

9 lines (6 loc) · 624 Bytes

Part 5

Code for Part 5 of my math expression parser series at inspirnathan.com

Commands

  • node for-loop/example: Run example code for printing tokens using a tokenizer built with for loops.

  • node for-of-loop/example: Run example code for printing tokens using a tokenizer built with for...of loops.

  • node regex/example: Run example code for printing tokens using a tokenizer built with regular expressions. This type of tokenizer will be used or referenced for the remainder of my tutorial series.