Check if multi select field is empty or not

Probably it is very simple but how to check if a multi select SharePoint field is empty or not,

!fd.field('Check_x0020_2').value == '' this works for dropdown field but not for multi select checkboxes.

Thanks.

Dear @aseem,
Since values for multichoice field are stored as an array, you can check the length of the value:

if(fd.field('Check_x0020_2').value.length == 0){
}

Thanks, I'll try this.