Convert the value to a JavaScript String value. See ECMA 9.8. @param value a JavaScript value @return the corresponding String value converted using the ECMA rules
(Object value)
| 1766 | * @return the corresponding String value converted using the ECMA rules |
| 1767 | */ |
| 1768 | public static String toString(Object value) { |
| 1769 | return ScriptRuntime.toString(value); |
| 1770 | } |
| 1771 | |
| 1772 | /** |
| 1773 | * Convert the value to an JavaScript object value. |