//
variables
How would someone declare a variable called “input” and set its initial value to “56”?
var input = 56;
- Var declares a particular variable (in this case "input") and then the assignment operator ("=") is used to set it to a value - in the case of this example "56".The content of functions must be placed within what?