Answers for "get key and values of dict jas"

2

get keys of dictionary js

// Get keys of a dictionary
let dict = { a:1 , b:2 , c:3 }

console.log( Object.keys(dict) ) // expected output : ['a', 'b', 'c']
Posted by: Guest on July-20-2020
0

Get Key's Value

hh = {"john":3, "mary":4, "joe":5}
print(hh["mary"])
# 4
Posted by: Guest on December-10-2021

Code answers related to "get key and values of dict jas"

Code answers related to "Javascript"

Browse Popular Code Answers by Language