DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

Maps / Dictionaries — Example 56

Quick explanation + ready code for: Maps / Dictionaries.

Scala Maps / Dictionaries Back to examples
Back to language
Syntax: Maps / Dictionaries in Scala. ID: #56

Code

const obj = { a:13, b:14 };
console.log(Object.keys(obj), obj.a);

Notes

You can copy this snippet and adapt it. For advanced, add real-world inputs, edge cases, and tests.