--- title: Parse slug: Glossary/Parse translation_of: Glossary/Parse ---
Parsing means analyzing and converting a program into an internal format that a runtime environment can actually run, for example the {{glossary("JavaScript")}} engine inside browsers.
Parsing 就是将程序解析以及转换成能够在运行环境中运行的计算机内部格式,浏览器中的{{glossary("JavaScript")}} 驱动就是一个很好的解析例子。
In JavaScript, this is done during {{glossary("compile time")}} or whenever the {{glossary("parser")}} is invoked, such as during a call to a method.
JavaScript 中的解析过程一般在{{glossary("compile time")}}中完成,或者是在任意{{glossary("parser")}} 参与的时候完成。比如说在调用一个JS方法的过程中完成parsing。