I'm reading the following code:

Dim fRecording as Boolean

If fRecording Then
...
End If
I thought the use of If... Then using a Boolean variable should be
If fRecording = true then
....
End If
What means If fRecording Then... without the use of = false or = true?