How to get a value from keyvalue pair list?

Whistler

I am trying to understand the concept of KeyValue pair list in JavaScript.

Do I have to use an array? I tried adding this data to an array:

key: 1, value: "apple"
key: 2, value: "banana"
key: 7, value: "cherry"
key: 24, value: "grapes"

But how do I get the value of key 7 without using loop?

I create JSFiddle with an example. How can I edit this example to return me the value of the key? At the moment it is returning a value of the first entered keyValue pair.

JSFiddle

poke

Don’t make your “dict” a list of key/value pairs. Instead, use an object which gives you all the functionality automatically:

var dict = {}; // object literal

function addToList() {
    var aKey = document.getElementById("fkey").value;
    var aValue = document.getElementById("fvalue").value;
    dict[aKey] = aValue;
}

function getFromList() {
    var aKey = document.getElementById("rkey").value;
    document.getElementById("rvalue").value = dict[aKey];
}

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

How to get a value which is a list from redis key-value store in golang?

来自分类Dev

How to get the value from ArrayList<Object> in android

来自分类Dev

Get the objects with the maximum value for a specific property from a list using LINQ

来自分类Dev

How to get the closest number from a List<Price> with LINQ?

来自分类Dev

How to get a value from CV_8UC4 matrix

来自分类Dev

How do I get a value from an associative array using Swift

来自分类Dev

How to get a single value from gae ndb query?

来自分类Dev

How to get value from Future with custom model in flutter

来自分类Dev

How to get text value from radio button and assign value to a specific div

来自分类Dev

Ajax get value from php

来自分类Dev

How to use associate arrays to get the id from the checkbox and appropreate value from the text field

来自分类Dev

python list of value to metric , how to?

来自分类Dev

how to read items from file into a list of items and set the properties to the value in the file?

来自分类Dev

How to get the deltas of a list collection

来自分类Dev

How to add a key-value pair in dictionary for dumping data in JSON format in python?

来自分类Dev

convert the value of dictionary from list to float

来自分类Dev

Assign a value to select list (in a table) from a DB

来自分类Dev

How to create a list of Tab from a list of String?

来自分类Dev

get items 2 by 2 from a list in Python

来自分类Dev

PHP get a value from array index

来自分类Dev

Get value from one Optional or another

来自分类Dev

Can't get integer value from EditText

来自分类Dev

Get value from hashmap/keyset in java?

来自分类Dev

Excel: Get max value from variable range

来自分类Dev

从 List<Pair<String,String>> 创建列表<string>

来自分类Dev

Store Properties as (name-value-pair) table?

来自分类Dev

How to get type from String?

来自分类Dev

How to get a list with the Typesafe config library

来自分类Dev

How to get file path + file name into a list?

Related 相关文章

  1. 1

    How to get a value which is a list from redis key-value store in golang?

  2. 2

    How to get the value from ArrayList<Object> in android

  3. 3

    Get the objects with the maximum value for a specific property from a list using LINQ

  4. 4

    How to get the closest number from a List<Price> with LINQ?

  5. 5

    How to get a value from CV_8UC4 matrix

  6. 6

    How do I get a value from an associative array using Swift

  7. 7

    How to get a single value from gae ndb query?

  8. 8

    How to get value from Future with custom model in flutter

  9. 9

    How to get text value from radio button and assign value to a specific div

  10. 10

    Ajax get value from php

  11. 11

    How to use associate arrays to get the id from the checkbox and appropreate value from the text field

  12. 12

    python list of value to metric , how to?

  13. 13

    how to read items from file into a list of items and set the properties to the value in the file?

  14. 14

    How to get the deltas of a list collection

  15. 15

    How to add a key-value pair in dictionary for dumping data in JSON format in python?

  16. 16

    convert the value of dictionary from list to float

  17. 17

    Assign a value to select list (in a table) from a DB

  18. 18

    How to create a list of Tab from a list of String?

  19. 19

    get items 2 by 2 from a list in Python

  20. 20

    PHP get a value from array index

  21. 21

    Get value from one Optional or another

  22. 22

    Can't get integer value from EditText

  23. 23

    Get value from hashmap/keyset in java?

  24. 24

    Excel: Get max value from variable range

  25. 25

    从 List<Pair<String,String>> 创建列表<string>

  26. 26

    Store Properties as (name-value-pair) table?

  27. 27

    How to get type from String?

  28. 28

    How to get a list with the Typesafe config library

  29. 29

    How to get file path + file name into a list?

热门标签

归档