Ondrej Kraus edb880f87c add tests
2015-02-25 14:26:28 +01:00

10 lines
146 B
JavaScript

var t = function (...items) {
var x = items[0];
var y = items[1];
}
function t(...items) {
var x = items[0];
var y = items[1];
}