What are pipes? For people who have worked with Angular version one, pipes are the new filters. You use pipes to format data. For example if you want to format a date you can use the built in date pipe. The above code will result in the following output 2016-12-28. Now this is great ,but real world applications should support different cultures. When a user from the US uses your application the date should be formatted in 'yyyy-dd-MM' and when the user is from Belgium is should be 'yyyy-MM-dd'.…