Sign in
webkit
/
WebKit
/
8811b522c4d9fd9fbebc2e2caf8f1ebff78163f9
/
.
/
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"
);