Sign in
webkit
/
WebKit
/
73559930a6418bc4621c1c5774b11e1be9c21a8f
/
.
/
LayoutTests
/
js
/
script-tests
/
sort-non-numbers.js
blob: 08e0420053736adb782bfb937b8c39319932fb06 [
file
] [
log
] [
blame
]
description
(
"This tests numerically sorting an array of non-numbers."
);
var
test
=
[
"2"
,
"1"
,
"3"
];
test
.
sort
(
function
(
v1
,
v2
)
{
return
v1
-
v2
;
});
shouldBe
(
"String(test)"
,
"'1,2,3'"
);