mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
10 lines
229 B
JavaScript
10 lines
229 B
JavaScript
// https://github.com/espruino/Espruino/issues/614
|
|
// bad news. E.toString could be a flat string?
|
|
|
|
var t = E.toString([72,101,108,108,111]); // "Hello"
|
|
trace(t);
|
|
t+=" World"
|
|
trace(t);
|
|
|
|
result = t=="Hello World" && t.length==11;
|