最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

dictionary - Are javascript object keys case sensitive? - Stack Overflow

programmeradmin3浏览0评论

I was trying to fix duplicate items in an array on javascript by the means of object keys. The loop added 'virtual reality' and 'Virtual Reality' in the same object as different keys. Is there a way to make Javascript object not case sensitive ?

I was trying to fix duplicate items in an array on javascript by the means of object keys. The loop added 'virtual reality' and 'Virtual Reality' in the same object as different keys. Is there a way to make Javascript object not case sensitive ?

Share Improve this question edited May 12, 2017 at 20:11 cweiske 31.2k15 gold badges147 silver badges205 bronze badges asked Feb 22, 2017 at 19:27 Gaurav LathGaurav Lath 1231 gold badge2 silver badges8 bronze badges 5
  • 3 JavaScript doesn't have dictionaries, it has objects. Aside from that, strings (which is really what you are talking about) are always case-sensitive. – Scott Marcus Commented Feb 22, 2017 at 19:28
  • 1 yes are case sensitive, but not dictionaries, only objects, but in newer revisions exists Map – Álvaro Touzón Commented Feb 22, 2017 at 19:28
  • You can always reduce the input to lower case and just pare everything as lower case. – Jon Glazer Commented Feb 22, 2017 at 19:29
  • stackoverflow./questions/12484386/… – Hobroker Commented Feb 22, 2017 at 19:29
  • Related: Access JavaScript property case-insensitively?, Is the hasOwnProperty method in JavaScript case sensitive?, Can an Object have case-insensitive member access? – Bergi Commented Dec 14, 2020 at 21:27
Add a ment  | 

3 Answers 3

Reset to default 4

While object properties are strings and they are case sensitive, you could use an own standard and use only lower case letters for the access.

You could apply a String#toLowerCase to the key and use a function as wrapper for the access.

Example with a wrapper object.

function insert(key, value) {
    if (!wrapper[key.toLowerCase()]) {
        wrapper[key.toLowerCase()] = key;
    }
    data[wrapper[key.toLowerCase()]] = value;
}

var data = {},
    wrapper = {};

insert('Foo', 'bar');
console.log(data);
insert('FOO', '42');
console.log(data);

Are javascript object keys case sensitive?

Yes, open your favorite browser's console to find your answer. I used Chrome:

var obj = {'one': 1}

obj.one

1

obj.ONE

undefined

obj['one']

1

obj['ONE']

undefined

JavaScript like most languages is indeed case sensitive.

发布评论

评论列表(0)

  1. 暂无评论