Creating a Custom Helper Function
Learn to create a custom helper function in Ember applications.
We'll cover the following...
So far, we’ve concatenated a $
with the price of our product. Imagine a case where we need to specify a different currency. In the hard-coded case, we need to go to each component and template to update the value. To save time, we can create a custom helper to ...