I cook. I read a lot. Have a good wife. Grownup kids with jobs.
Your intelligence is not proof of your specialness: It's proof that your brain buys its own propaganda.
I'm a big Rhea Seahorn fan though so, there's that. I'd enjoy watching her do anything.
I'm a big Rhea Seahorn fan though so, there's that. I'd enjoy watching her do anything.
const a={b:undefined};
console.log(a.b); //-> undefined
console.log(a.nonExistent) //-> undefined
console.dir(Object.keys(a)); //-> [ 'b' ]
ie, the key is present but undefined
const a={b:undefined};
console.log(a.b); //-> undefined
console.log(a.nonExistent) //-> undefined
console.dir(Object.keys(a)); //-> [ 'b' ]
ie, the key is present but undefined
While it is true that Typescript can save you from certain hard to find errors, it is also cumbersome.
Those errors can easily be avoided with self-discipline thereby retaining the joy of dynamic typing.
I am completely uninterested in Typescript.
While it is true that Typescript can save you from certain hard to find errors, it is also cumbersome.
Those errors can easily be avoided with self-discipline thereby retaining the joy of dynamic typing.
I am completely uninterested in Typescript.
#!/usr/local/bin/node
'use strict';
const test={a:'b',c:undefined};;
console.dir({['test']:test}}
process.exit()
===>
qMini.local.tqwhite: runnoodle
{ test: { a: 'b', c: undefined } }
#!/usr/local/bin/node
'use strict';
const test={a:'b',c:undefined};;
console.dir({['test']:test}}
process.exit()
===>
qMini.local.tqwhite: runnoodle
{ test: { a: 'b', c: undefined } }
I'm curious, what's the next step you see in the sort of permission structure. How did they build on this?
I'm curious, what's the next step you see in the sort of permission structure. How did they build on this?