Both for..of and for..in statements iterate over lists; for..in returns the index value for the specific loop and for-of gives you the value returned by the iterator implementation.
git fetch is similar to pull but doesn't automatically merge; it fetches remote updates, but your local stays the same. git pull pulls down from a remote and instantly merges with your local.
The CSS3 resize property controls if and how the user can resize an element by clicking and dragging the bottom right corner (on left-to-right page direction) of the element.
JavaScript variables and functions are not declared at the point of use. Instead, they are moved to the top of their scope hoisted and assigned a default value of undefined until they're reached in code.