Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JavaScript variables memory location

Is there a way to see where the variable is located in the memory?

In ActionScript for example in debug mode you can see the memory location of the variable

I am using Google Chrome developer tools where I can see the variables in debug mode but there is no info about the memory location of the variable.

Are there any browser tools that show variable memory location?

like image 305
onetwo12 Avatar asked Oct 12 '13 11:10

onetwo12


1 Answers

No, it isn't possible. Due to way javascript interpretes works, it is quite hard to get memory address.

like image 196
Karol Sikora Avatar answered Sep 19 '22 03:09

Karol Sikora