Como verificar se o arquivo de entrada está vazio no jQuery

if ($('#videoUploadFile').get(0).files.length === 0) {
    console.log("No files selected.");
}
Sikadner