Issue #3599
This test-case is intended for Issue #3599
- The value of undefined no longer show in the console.
Jan Odvarko, odvarko@gmail.com
- Open Firebug and enable the Console panel.
- Copy the code and paste it into the Firebug's command line:
var a = 10;
- The Console panel should display:
>>> var a = 10;
undefined;
The 'undefined' should be displayed at the end (since no result value).