rse / es6-features

ECMAScript 6: Feature Overview & Comparison

Home Page: https://rse.github.io/es6-features/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Map/Set & WeakMap/WeakSet - Uncaught ReferenceError: s is not defined

damiangreen opened this issue · comments

The Map/Set example doesn't work

https://github.com/rse/es6-features/blob/38f6a8499116f5207806272eaa6a4a9153293068/features.txt

let m = new Map()
m.set("hello", 42)
m.set(s, 34)

I saw that too.

Should be:

let m = new Map, s; m.set("hello", 42); m.set(s, 34); m.get(s) === 34; m.size === 2; for (let [ key, val ] of m.entries()) console.log(key + " = " + val);

I created a pull request a while back. No maintainers around it appears though