Espruino/tests/test_array_join.js
Michael Duerinckx 7f5308590b Rename numbered tests to something more descriptive - closes #16
test077 is the only one I really couldn't figure out what it was meant
to test.
2014-03-01 22:15:28 +00:00

5 lines
80 B
JavaScript

// test for array join
var a = [1,2,4,5,7];
result = a.join(",")=="1,2,4,5,7";