[quote=“ivan, post:1, topic:3069”]
-
What is an expression? Expressions are numbers, symbols and operators grouped together that show the value of something.
-
What is a binding? The Bind (…) method allows us to easily set which object will be bound by a keyword when a function or method is invoked. ex.) var a=9
-
What is an environment? I view this as sort of the like the rules that the programer establishes so that javascript knows what do do.
-
What is a function? A function in JavaScript is similar to a procedure in that it’s a set of statements that perform a task or calculate a value, but for a procedure to qualify as a “function” , it should take some input and return an output
-
Give an example of a function. Return number * number;
-
What is a side effect? A “side effect” is any application state change that is observable outside the called function other than its return value.
-
Give an example of a function that produces a side effect and another function that produces a value.
-
What is control flow? The Control flow is the order in which the computer executes statements in a script.
-
What is conditional execution? I believe you are referring to bolean. These are true or false statement.
-
What kind of keyword do you need to use to invoke conditional execution? Let if else