Files
2021-08-03 23:30:16 +02:00

6 lines
78 B
JavaScript

function * myGenerator(n) {
return n
|> (yield #)
|> Math.abs(#);
}