RichardRotterdam Posted July 12, 2007 Share Posted July 12, 2007 OK this is probably impossible but I am wondering if there is a way. Let me give an example first lets say i have an javascript object function Cat(){ this.name; this.showVar=function(){ }; } //create object var DJ_Kat=new Cat(); here is the trickey part I was wondering if i could make the function showVar alert the variable its stored in. in code //this will alert "DJ_Kat" this.showVar() is this even possible or do i have to store the var name inside a var? because when i try alert(DJ_Kat); it shows clearly that its an object Link to comment https://forums.phpfreaks.com/topic/59695-solved-javascript-oop-question/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.