Apparently for some weird reasons I have been getting a bug on a web app and replacing it from dot notation to [''] solved it.
Observe:
from:
item.price = quantity * normal_price;
to:
item['price'] = quantity * normal_price;
Apparently for some weird reasons I have been getting a bug on a web app and replacing it from dot notation to [''] solved it.
Observe:
from:
item.price = quantity * normal_price;
to:
item['price'] = quantity * normal_price;
For further actions, you may consider blocking this person and/or reporting abuse
Kristijan Pajtasev -
amdiamond107 -
Thomas Sentre -
Ben Halpern -
Once suspended, feezyhendrix will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, feezyhendrix will be able to comment and publish posts again.
Once unpublished, all posts by feezyhendrix will become hidden and only accessible to themselves.
If feezyhendrix is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Abdulhafeez Abdulraheem.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag feezyhendrix:
Unflagging feezyhendrix will restore default visibility to their posts.
Top comments (2)
The later allows you to use variables to reference object keys. That's one way
This seems plausible