blob: 56463fd374c7ee4abf12c5e8e46b1042169f6e5c [file] [log] [blame]
function test() {
var c = (v, w, x, y, z) => "" + v + w + x + y + z;
return (c(6, 5, 4, 3, 2) === "65432");
}
if (!test())
throw new Error("Test failed");