Yes, very interesting....

I remember Mumps from a Computer Language (or Dr. Dobb's?) article from the
eighties.

Any tutorial links for Mumps Globals?

Alternative syntax:

patient('address', 'zipcode').value() // to get the value
patient('address','zipcode').value('12345') // to set the value

var patient = patients(123456); // to get a document node
or
var patient = patients([123456]);

var address = patients(123456, 'address');
or
var address = patient('address');

So, a document node can be explored passing an arbitrary list of arguments.

We can write

var newpatient = patients(123458);
newpatient.value(json);
to set the document node

Each node object had other functions, as you described in your third post
http://robtweed.wordpress.com/2013/01/24/a-phoenix-rises/

Angel "Java" Lopez
@ajlopez
gh:ajlopez

On Sat, Jan 26, 2013 at 8:33 AM, rtweed <[email protected]> wrote:

> Please see:
>
>
> http://robtweed.wordpress.com/2013/01/26/to-the-node-js-community-healthcare-needs-your-help/
>
>
>  --
> --
> Job Board: http://jobs.nodejs.org/
> Posting guidelines:
> https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
> You received this message because you are subscribed to the Google
> Groups "nodejs" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected]
> For more options, visit this group at
> http://groups.google.com/group/nodejs?hl=en?hl=en
>
>
>
>

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en



Reply via email to