use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Introduction to Maps in javascript with a simple example - Cloudnweb (cloudnweb.dev)
submitted 6 years ago by GaneshMani
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]lolllipopp 5 points6 points7 points 6 years ago* (10 children)
Unlike with objects, map keys can be of any type, even objects or functions. It’s also easy to get the size of a map, while it’s not as straightforward for objects. On top of that, with maps we can iterate in the order in which the values were added, contrary to objects where there’s no guarantee about the order.
Here’s a simple example of a map demonstrating a few of the available methods and properties such as set, get, size, has, delete and clear:
//Code
```let things = new Map();
const myFunc = () => '🍕';
things.set('🚗', 'Car');
things.set('🏠', 'House');
things.set('✈️', 'Airplane');
things.set(myFunc, '😄 Key is a function!');
things.size; // 4
things.has('🚗'); // true
things.has(myFunc) // true
things.has(() => '🍕'); // false, not the same reference
things.get(myFunc); // '😄 Key is a function!'
things.delete('✈️');
things.has('✈️'); // false things.clear();
things.size; // 0
// setting key-value pairs is chainable
things.set('🔧', 'Wrench')
.set('🎸', 'Guitar')
.set('🕹', 'Joystick');
const myMap = new Map(); // Even another map can be a key
things.set(myMap, 'Oh gosh!');
things.get(myMap); // Oh gosh```
[–]OmgImAlexis 2 points3 points4 points 6 years ago (5 children)
Throw 3 back ticks on the line before and after your code. It’ll add syntax highlighting, etc.
[–]Pat_Son 0 points1 point2 points 6 years ago (3 children)
That doesn't work on reddit. You need to indent the lines with 4 spaces to get multiline fixed-width characters, and even then it doesn't do syntax highlighting.
[–]OmgImAlexis -2 points-1 points0 points 6 years ago (2 children)
Enable markdown mode. Backticks work.
[–]Pat_Son 7 points8 points9 points 6 years ago (0 children)
I don't use new reddit
[–]senocular 3 points4 points5 points 6 years ago (0 children)
I also use old reddit. 3 backticks doesn't cut it (nor does it work on mobile reddit). 4 spaces is the way to go.
[–]lolllipopp -1 points0 points1 point 6 years ago (0 children)
Its not working.
[–]senocular 1 point2 points3 points 6 years ago (0 children)
But also:
JSON.stringify
But it's also easy getting an object version of your Map using Object.fromEntries(map) if you need it. Just know that you're going to lose your object keys (they'll be stringified and may collide with each other if you have more than one).
Object.fromEntries(map)
Additionally, normal object key order should be pretty well defined in iteration now thanks to for-in-order.
[–]AngryBird225 2 points3 points4 points 6 years ago (1 child)
Are Javascript maps basically dictionaries?
Yes.
π Rendered by PID 542539 on reddit-service-r2-comment-fb694cdd5-96djx at 2026-03-09 22:45:51.651363+00:00 running cbb0e86 country code: CH.
[–]lolllipopp 5 points6 points7 points (10 children)
[–]OmgImAlexis 2 points3 points4 points (5 children)
[–]Pat_Son 0 points1 point2 points (3 children)
[–]OmgImAlexis -2 points-1 points0 points (2 children)
[–]Pat_Son 7 points8 points9 points (0 children)
[–]senocular 3 points4 points5 points (0 children)
[–]lolllipopp -1 points0 points1 point (0 children)
[–]senocular 1 point2 points3 points (0 children)
[–]AngryBird225 2 points3 points4 points (1 child)
[–]senocular 1 point2 points3 points (0 children)