20 full stack JS questions that may be relevant on your next interview :) 1. What is the difference between let, var and const in javascript? A bit more context: Before ES6 there were only one way of defining your variables: with the var keyword. If you did not define them, they would be assigned to the global object. Unless you were…