This is a variable declared in my code.
var startDateSet = $(this.parentEl).find('input[name=daterangepicker_start]').val();
I understand that '!' is essentially the same as 'not' but I do not understand what it means when used in this context
if (!this.isStartDateSet) {
var
var
var
............
}
does this just mean "if this start date is not set?"