Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Code seems to be logical but returns empty string
Message
From
29/07/2015 02:23:27
 
General information
Forum:
Javascript
Category:
Debugging
Miscellaneous
Thread ID:
01622609
Message ID:
01622620
Views:
44
This message has been marked as a message which has helped to the initial question of the thread.
>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 + ')');
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform