Variable name as a string in Javascript

前端 未结 17 1726
难免孤独
难免孤独 2020-11-22 06:20

Is there a way to get a variable name as a string in Javascript? (like NSStringFromSelector in Cocoa)

I would like to do like this:

var myFirstName =         


        
17条回答
  •  执笔经年
    2020-11-22 07:03

    var x = 2;
    for(o in window){ 
       if(window[o] === x){
          alert(o);
       }
    }
    

    However, I think you should do like "karim79"

提交回复
热议问题