mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
6 lines
120 B
JavaScript
6 lines
120 B
JavaScript
// test for string split
|
|
var b = "1,4,7";
|
|
var a = b.split(",");
|
|
|
|
result = a.length==3 && a[0]==1 && a[1]==4 && a[2]==7;
|