Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Code seems to be logical but returns empty string
Message
 
 
À
29/07/2015 02:23:27
Information générale
Forum:
Javascript
Catégorie:
Débogage
Divers
Thread ID:
01622609
Message ID:
01622629
Vues:
27
>>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform