An expression statement is an expression used in a place where a statement is expected. The expression is evaluated and its result is discarded — therefore, it makes sense only for expressions that have side effects, such as executing a function or updating a variable....function setIndex(index, value) { if (index >= 0) { // Intend...creates an extra variable! let[index] = value; } } setIndex(0, [1...