Complete the code to chain two pipes in Angular template.
<p>{{ message [1] uppercase }}</p>In Angular templates, pipes are chained using the pipe symbol |.
Complete the code to chain 'uppercase' and 'slice' pipes to show first 5 letters in uppercase.
<p>{{ name [1] uppercase [2] slice:0:5 }}</p>: to chain pipes instead of parameters.Use the pipe symbol | to chain pipes. Parameters use colon :.
Fix the error in chaining 'date' and 'uppercase' pipes to format date and convert to uppercase.
<p>{{ today [1] date:'shortDate' [2] uppercase }}</p>: to chain pipes instead of parameters.Use the pipe symbol | to chain pipes. Parameters use colon :.
Fill both blanks to chain 'lowercase' and 'slice' pipes to show last 3 letters in lowercase.
<p>{{ word [1] lowercase [2] slice:-3 }}</p>: to chain pipes instead of parameters.Both blanks need the pipe symbol | to chain the pipes correctly.
Fill all three blanks to chain 'slice', 'uppercase', and 'replace' pipes to show first 4 letters uppercase and replace 'A' with '@'.
<p>{{ text [1] slice:0:4 [2] uppercase [3] replace:'A':'@' }}</p>Use pipe symbol | to chain pipes and colon : for parameters inside pipes.