|
|
|
|
|
by progx
998 days ago
|
|
Its all a problem of formatting, for me this is simple to read. const { status } = await
send(
capitalize(greeting)
+ "!"
)
But i would not concat things in a method call, bad style. const message = capitalize(greeting) + "!"
const { status } = await send(message)
The example from the page is a little bit too simple.With complex operations a pipe-method would make more sense. But i will wait for the native pipeline-operator <https://github.com/tc39/proposal-pipeline-operator> instead using now a function. |
|
const { status } = await send(`${capitalize(greeting)}!`)
console.log(status)
It does reduce the number of discrete operations to make the pipe example look more impressive, though.