Sign in
webkit
/
WebKit
/
8c551616acce2c42251182c7abaffe8c5bfc0fe5
/
.
/
JSTests
/
es6
/
Array_static_methods_Array.of.js
blob: 040d4ca84d63f368310492fde92f9ad80c1f9c6f [
file
] [
log
] [
blame
]
function
test
()
{
return
typeof
Array
.
of
===
'function'
&&
Array
.
of
(
2
)[
0
]
===
2
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);