Definition: Parsing is the process of reading the source code of your program in order to determine what the code is supposed to do. The Javascript interpreter built into the web browser parses Javascript by searching for reserved words and operators. It can also identify variables/properties and functions/methods that have already been defined. It knows what those parts of the statement mean and is therefore able to determine what the rest means from its context.
previous post
next post