Posts by marvin • 23 points
1 post
-
2
votes1
answer41
viewsQ: Why does this code always return False?
Can anyone explain to me why it always returns false???? function ValidationProcessDoc( ext ){ if ( ext === 'TXT' || 'DOC' || 'XLS' || 'PPT' ) { return false; } else if ( ext === 'PDF' || 'HTM' ||…