Click here to Skip to main content
15,893,594 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: From the Museum of Ugly Code Pin
11917640 Member 6-Nov-18 3:14
11917640 Member 6-Nov-18 3:14 
GeneralRe: From the Museum of Ugly Code Pin
DerekT-P6-Nov-18 23:29
professionalDerekT-P6-Nov-18 23:29 
GeneralRe: From the Museum of Ugly Code Pin
den2k886-Nov-18 3:17
professionalden2k886-Nov-18 3:17 
GeneralRe: From the Museum of Ugly Code Pin
raddevus6-Nov-18 3:25
mvaraddevus6-Nov-18 3:25 
GeneralRe: From the Museum of Ugly Code Pin
charlieg6-Nov-18 3:56
charlieg6-Nov-18 3:56 
GeneralRe: From the Museum of Ugly Code Pin
raddevus6-Nov-18 4:18
mvaraddevus6-Nov-18 4:18 
GeneralRe: From the Museum of Ugly Code Pin
boarderstu6-Nov-18 22:38
boarderstu6-Nov-18 22:38 
GeneralRe: From the Museum of Ugly Code Pin
DerekT-P6-Nov-18 23:22
professionalDerekT-P6-Nov-18 23:22 
no, it won't always be true. Consider:
var functionName=null;
//
// ...
//
if (functionName) { 
    alert('true') 
} else { 
    alert('false') 
}

functionName = function() { 
 // Some useful stuff
}

if (functionName) { 
    alert('true') 
} else { 
    alert('false') 
}
There are plenty of use cases where testing a function for existence is perfectly valid. I guess not in that particular case though.
GeneralRe: From the Museum of Ugly Code Pin
boarderstu6-Nov-18 23:30
boarderstu6-Nov-18 23:30 
GeneralRe: From the Museum of Ugly Code Pin
raddevus7-Nov-18 1:57
mvaraddevus7-Nov-18 1:57 
GeneralRe: From the Museum of Ugly Code Pin
TheGreatAndPowerfulOz6-Nov-18 5:16
TheGreatAndPowerfulOz6-Nov-18 5:16 
GeneralRe: From the Museum of Ugly Code Pin
den2k886-Nov-18 5:25
professionalden2k886-Nov-18 5:25 
GeneralRe: From the Museum of Ugly Code Pin
TheGreatAndPowerfulOz6-Nov-18 6:25
TheGreatAndPowerfulOz6-Nov-18 6:25 
GeneralRe: From the Museum of Ugly Code Pin
den2k886-Nov-18 20:37
professionalden2k886-Nov-18 20:37 
GeneralRe: From the Museum of Ugly Code Pin
boarderstu6-Nov-18 22:40
boarderstu6-Nov-18 22:40 
GeneralRe: From the Museum of Ugly Code Pin
den2k887-Nov-18 0:24
professionalden2k887-Nov-18 0:24 
GeneralRe: From the Museum of Ugly Code Pin
boarderstu7-Nov-18 0:24
boarderstu7-Nov-18 0:24 
GeneralRe: From the Museum of Ugly Code Pin
BillW336-Nov-18 3:49
professionalBillW336-Nov-18 3:49 
GeneralRe: From the Museum of Ugly Code Pin
TheGreatAndPowerfulOz6-Nov-18 5:09
TheGreatAndPowerfulOz6-Nov-18 5:09 
GeneralRe: From the Museum of Ugly Code Pin
Stryder_16-Nov-18 4:15
Stryder_16-Nov-18 4:15 
GeneralRe: From the Museum of Ugly Code Pin
raddevus6-Nov-18 4:22
mvaraddevus6-Nov-18 4:22 
GeneralRe: From the Museum of Ugly Code Pin
TheGreatAndPowerfulOz6-Nov-18 5:11
TheGreatAndPowerfulOz6-Nov-18 5:11 
GeneralRe: From the Museum of Ugly Code Pin
Richard Deeming6-Nov-18 4:32
mveRichard Deeming6-Nov-18 4:32 
GeneralRe: From the Museum of Ugly Code Pin
TheGreatAndPowerfulOz6-Nov-18 5:06
TheGreatAndPowerfulOz6-Nov-18 5:06 
GeneralRe: From the Museum of Ugly Code Pin
charlieg6-Nov-18 9:17
charlieg6-Nov-18 9:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.