What Are Bindings in JavaScript?
To hold onto new values, JavaScript uses something called bindings, or variables. For example: This translates into: Create a binding named holdThisValue and use it to grab a hold of the product of 4 * 5. So you see the keyword let? It means that this statement is going to be a binding. The next … Read more