Complete the code to display the current date using Angular's date pipe.
<p>Today is {{ currentDate [1] }}</p>|.The date pipe formats a date value according to locale rules.
Complete the code to display a price formatted as US dollars using Angular's currency pipe.
<p>Price: {{ price [1] }}</p>The currency pipe formats numbers as currency. Adding :'USD' sets the currency to US dollars.
Fix the error in the code to convert the username to uppercase using Angular's uppercase pipe.
<p>User: {{ username [1] }}</p>lowercase instead of uppercase.|.The uppercase pipe converts text to all uppercase letters.
Fill both blanks to display the current date in short format and the price in Euros.
<p>Date: {{ today [1] }}</p>
<p>Cost: {{ cost [2] }}</p>The date pipe with 'shortDate' formats the date shortly. The currency pipe with 'EUR' formats the number as Euros.
Fill all three blanks to display the username in uppercase, the current date in full format, and the price in British pounds.
<p>Name: {{ user [1] }}</p>
<p>Date: {{ currentDate [2] }}</p>
<p>Amount: {{ amount [3] }}</p>The uppercase pipe converts text to uppercase. The date pipe with 'fullDate' shows the full date. The currency pipe with 'GBP' formats the amount as British pounds.