Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Code seems to be logical but returns empty string
Message
 
 
General information
Forum:
Javascript
Category:
Debugging
Miscellaneous
Thread ID:
01622609
Message ID:
01622629
Views:
26
>>Hi everybody,
>>
>>This should be simple but somehow it eludes me.
>>
>>I have this code in JavaScript which seems very logical and simple to me:
>>
>>
>>formTitle = formTitle + $scope.isNew ? '' : ' (' + currentmax4sale.id + ')';
>>
>>I am debugging it and right before this line of code the formTitle has value. Right after this it becomes a blank string, although $scope.isNew = false.
>>
>>My intent is to add an extra string in case of the existing row.
>>
>>Where am I making the mistake for such a simple assignment?
>>
>>I am guessing I am running into some weird operator precedence issue here.
>>
>>Thanks in advance.
>>
>>In the meantime I'll get rid of the inline iif and add IF statement instead.
formTitle = formTitle + ($scope.isNew ? '' : ' (' + currentmax4sale.id + ')');
Well, I already re-wrote the code. I was mostly interesting in the explanation of that behavior.
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform