Which of these lines turns the value of isMonday to false?

var isMonday = !true;var isMonday = true!;

We need to put the ! operator in front of the value to negate it.