The expression '5' - 2 evaluates to 3 (a number). Unlike the + operator, which performs string concatenation if either operand is a string, the - operator always attempts to convert its operands to numbers. So, the string '5' is converted to the number 5, and then 5 - 2 equals 3. This illustrates an important difference in type coercion between + and - operators in JavaScript.