Let us discuss the basic concept behind the lisp interpreter using javascript. Those who are new to javascript can go throw some basics and the complete code of our interpreter program given here . Let us go through each functions one by one. Function Env: This function defines the environment for a variable used in execution. The function find(variable) in line number 4 will find the correct environment of execution for the variable. If the variable is defined in the existing environment, the current environment is considered, else the function is called recursively to the outer environments untill the correct environment is found. This property is known as lexical scoping. Function addGlobal: This functions defines the global environment. Basic math functions such as '+', '*' etc are defined in the global environment. Other than these 21 basic functions, some other math functions such as sin,cos,log etc are also included in the global environment as shown belo...