Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
Map_basic_functionality.js
blob: 513e7a178bc1474ee1456b59c815625f4fcb3338 [
file
] [
log
] [
blame
]
function
test
()
{
var
key
=
{};
var
map
=
new
Map
();
map
.
set
(
key
,
123
);
return
map
.
has
(
key
)
&&
map
.
get
(
key
)
===
123
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);