What is the type of “keys” in JavaScript?

前端 未结 5 428
梦毁少年i
梦毁少年i 2020-12-05 17:52

I bumbed into one of those moments when I just lose the focus and start wondering on a silly question:

var a = {
  b: \"value\"
}

What is t

5条回答
  •  庸人自扰
    2020-12-05 18:33

    var a = {$ : 'hello', 2123 : 'number'};
    for(var key in a) {
      console.log(typeof key)
    }

    Keys in javascript objects can be strings and symbols. symbol is a primitive data type in javascript.

提交回复
热议问题