Functions

Functions

Returning from a function

function xy() {
    return select css('#sel1') from Source()
  }

Arrow Function

let y = () => select css('#sel1') from Source()

Returning from a function with context

function xy() {
  return (
    using context(){
    select css('#sel1') from Source()
    union
    select css('#sel1') from Source()
  }
  )
}