Content deleted Content added
m Task 70: Update syntaxhighlight tags - remove use of deprecated <source> tags |
|||
Line 37:
Compare:
<
a << b << c;
</syntaxhighlight>
equivalent to:
<
a << b;
a << c;
</syntaxhighlight>
Another example in [[JavaScript]] uses the built-in methods of Array:
<
somethings
.filter(x => x.count > 10)
.sort((a, b) => a.count - b.count)
.map(x => x.name)
</syntaxhighlight>
==See also==
|