| Summary: | Boolean doesn't correctly convert to a string | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Kathy Carroll <carrollk> |
| Component: | EDT | Assignee: | Project Inbox <edt.javascriptgen-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | greer |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
Integer has the same issue Both of these issues have been resolved. works in 2011091325 Closing this defect. |
EDT code function start() SysLib.WriteStdOut("Hello from JavaScript Batch"); builtString String; myT boolean = true; builtString = "myT " + myT; SysLib.WriteStdOut(builtString); end Output is Hello from JavaScript Batch myT [object Object] Expected output is Hello from JavaScript Batch myT true