The JavaScript exception "unparenthesized unary expression can't appear on the left-hand side of '**'" occurs when a unary operator (one of typeof, void, delete, await, !, ~, +, -) is used on the left operand of the exponentiation operator without parentheses....likely wrote something like this: js -a ** b Whether it should be...side to resolve the ambiguity. js (-a) ** b -(a ** b) Other unary...