Js Maps | Table O Contents
A map in Javascript is a list of key-value pairs of any type or combination …
Note. The Flammarion Logo Badge
in the page header above is an .svg
image file set to the dimensions of 5%
width, auto
height, and zoom
. Go ahead and test the zoom-out
feature by hovering over the badge to engage the expansion of the image.
Instantiation
Hint. For a given map named spanglish, for example … First instantiate the map with the new Map() constructor.
let spanglish = new Map();
Coercement
Javascript object properties when used as the key in a key-value pair are normally coerced into a String by the Javascript engine.
Not so when using a Javascript map in ES6 [1].
Either the key or the value can be of any type.
So, the key of a key-value pair can be a String.
And, the value of a key-value pair can also be a String, as well.
Interface Methods
More to come …
Set Key - Value
Items are added to a Javascript map by use of the Interface set method, as follows:
spanglish.set("blackberry", "zarzamora");
spanglish.set("raspberry", "frambuesa");
spanglish.set(x, y);
Has Key
The has Interface method allows the programmer to first check to see if indeed a certain key does exist within the map prior to invoking the get method.
Let’s first check for the key.
And, if the exact key does indeed exist within the map, then we can get its value counterpart, as follows:
return console.log(`Does the key of "blackberry" exist? ➡️
Answer: ${spanglish.has("blackberry")}`);
Note. The method has returns a simple boolean true
or false
value.
If the boolean value returned by the has method is true
, then we can proceed with the get
operation.
If not, we can return
a message to the console.
Get Value
The get Interface method allows the programmer to retrieve the value of an item from a Javascript map if indeed the map houses an exact key to that value.
For example, “blackberry” is the English key while zarzamora is the Spanish equivalent value.
Assuming that the value returned by the has method is true
, how do we then execute a get
statement?
As follows,
return console.log(`The term "blackberry" in English refers to the word ➡️
"${spanglish.get("blackberry")}" in Spanish.`);
Programmatically Speaking
Putting it all together, we get the following Javascript program …
"use strict";
// JsHint: As of ES7 the Global use of the strict string pragma is recommended
function eightball(x, y) {
// Instantiate the map
let spanglish = new Map();
// Set the key - value pairs
spanglish.set("blackberry", "zarzamora");
spanglish.set("raspberry", "frambuesa");
spanglish.set(x, y);
// Set the conditionals for the `has` method
/* if (spanglish.has("blackberry")) {
return window.console.log(`Does the key of "blackberry" exist? ➡️
Answer: ${spanglish.has("blackberry")}. ➡️
The term "blackberry" in English refers to the word ➡️
"${spanglish.get("blackberry")}" in Spanish.`);
}
else {
return window.console.log(`The answer to your question of whether or not ➡️
the key of "blackberry" exists within the resident map reveals ${spanglish.has("blackberry")}.`);
} */
/* if (spanglish.has("raspberry")) {
return window.console.log(`Does the key of "raspberry" exist? ➡️
Answer: ${spanglish.has("raspberry")}. ➡️
The term "raspberry" in English refers to the word ➡️
"${spanglish.get("raspberry")}" in Spanish.`);
}
else {
return window.console.log(`The answer to your question of whether or not ➡️
the key of "raspberry" exists within the resident map reveals ${spanglish.has("raspberry")}.`);
} */
if (spanglish.has("apple")) {
return window.console.log(`Does the key of "apple" exist? ➡️
Answer: ${spanglish.has("apple")}. ➡️
The term "apple" in English refers to the word ➡️
"${spanglish.get("apple")}" in Spanish.`);
}
else {
return window.console.log(`The answer to your question of whether or not ➡️
the key of "apple" exists within the resident map reveals ${spanglish.has("apple")}.`);
}
}
eightball("apple", "manzana");
Note. Copy and paste the above code into the console prompt of your Chrome browser window and then execute the function by hitting the enter key while the Chrome Developer Toolset, or CDT is open.
Last Subtitle
More to come …
Note. The above synopsis was derived from an article written by Lean Pub [1].
- Understanding ECMAScript 6. Published by © 2017 Leanpub.com.
Support
Please support the co-workers who aggregate the Source Links for our projects.
Patreon
Like what you see in this project? If so, then support the authors and machine-elves
who aggregate the source links and pages for our projects via Patreon.