angular conditional pipe

Solutions on MaxInterview for angular conditional pipe by the best coders in the world

showing results for - "angular conditional pipe"
Cameron
16 Jan 2017
1// Use ternary operator to be able to use a pipe on a certain condition 
2{{variable.value ? (variable.text | SomePipe) : (variable.text | pipe2)}}
3