Complete the code to use the built-in Angular date pipe with a format parameter.
<p>{{ today | date: '[1]' }}</p>The Angular date pipe formats dates. The parameter 'shortDate' shows a short date format.
Complete the code to use a custom pipe named 'exclaim' with a parameter for the number of exclamation marks.
<p>{{ message | exclaim: [1] }}</p>The parameter for the custom pipe should be a number without quotes to specify how many exclamation marks to add.
Fix the error in the pipe usage by completing the parameter correctly.
<p>{{ price | currency: [1] }}</p>The currency pipe expects the currency code as a string in quotes, like 'USD'.
Fill both blanks to use the Angular slice pipe with start and end parameters.
<p>{{ text | slice: [1] : [2] }}</p>The slice pipe takes numeric start and end indexes without quotes to slice the string.
Fill all three blanks to use a custom pipe 'repeat' with a string and a number parameter.
<p>{{ word | repeat: [1] : [2] : [3] }}</p>The custom pipe 'repeat' takes a string separator and two numbers for repetition count and spacing.