Ternary Comparison Assignment Operators

@ethanlal04 @lightmare @graphemecluster @alinnert @theScottyJam
Hi all! Is it possible to do that? ternary Comparison Assignment Operators with Pipeline tap operator |: ?

case... my idea ... an idea:

const doTransfomration = data => data
  .filter(x => x != null)
  .tap(x => console.log(x))
  .sortOrder ?=== .map(x => x ** 2) or .filter(x => x > 100);

reference