Florian
Florian

Reputation: 3171

get all defined variables in current scope

I'm parsing a website which contains stuff like

hmapId[7]='42500000000626135';
hmapStartInterv[7]='750';
hmapEndInterv[7]='846';
hmapUrlInterv[7]='some url';
hmapNameInterv[7]="some name"
hmapRoleInterv[7]='some role';

My plan is to write that into a .js file and execute it with node js. After that I want to have some lines of code giving me all variables defined before as JSON to use the data in some other program. What's the best way to do this?

Thanks

Upvotes: 4

Views: 3332

Answers (1)

Julien Ch.
Julien Ch.

Reputation: 1261

For the current scope, it's not possible (AFAIK), for the global scope you have the globalobject in node.js (window in navigator embedded js engines), which get the global variables properties:

// on global scope, with x not defined as a "var"
x=25
console.info(global['x']===x) // --> writes down 'true'

Upvotes: 2

Related Questions