I shut my computers all the way down when I'm done with them. I like a clean slate when I return.
/some/shell -l myjob.sh
or sometimes . ~/.profile && cd /some/where && ./job >>cron.log 2>&1 > function foo({a, b, c}) {
... return {x: a, y: b, z: c};
... }
undefined
> foo({a: 1, b: 2, c: 3})
{ x: 1, y: 2, z: 3 }
> const a = 'A', b = 'B', c = 'C';
undefined
> foo({a, b, c})
{ x: 'A', y: 'B', z: 'C' }
>